2024-12-16 15:38:46 +05:00
|
|
|
|
namespace DD.Persistence.Client.CustomExceptions;
|
2024-12-09 14:45:35 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Bad gateway (502)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BadGatewayException : Exception
|
|
|
|
|
{
|
|
|
|
|
public BadGatewayException(string message)
|
|
|
|
|
: base(message) { }
|
|
|
|
|
}
|