MireaBackend/Endpoint/Common/Exceptions/ServerUnavailableException.cs

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;
}