8 lines
223 B
C#
8 lines
223 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Mirea.Api.Endpoint.Common.Exceptions;
|
|||
|
|
|||
|
public class ServerUnavailableException(string message, bool addRetryAfter) : Exception(message)
|
|||
|
{
|
|||
|
public bool AddRetryAfter { get; } = addRetryAfter;
|
|||
|
}
|