persistence/DD.Persistence.Client/CustomExceptions/BadGatewayException.cs

11 lines
229 B
C#
Raw Normal View History

namespace DD.Persistence.Client.CustomExceptions;
/// <summary>
/// Bad gateway (502)
/// </summary>
public class BadGatewayException : Exception
{
public BadGatewayException(string message)
: base(message) { }
}