11 lines
226 B
C#
11 lines
226 B
C#
|
namespace Persistence.Client.CustomExceptions;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Bad gateway (502)
|
|||
|
/// </summary>
|
|||
|
public class BadGatewayException : Exception
|
|||
|
{
|
|||
|
public BadGatewayException(string message)
|
|||
|
: base(message) { }
|
|||
|
}
|