using System; namespace Mirea.Api.Endpoint.Common.Exceptions; public class ServerUnavailableException(string message, bool addRetryAfter) : Exception(message) { public bool AddRetryAfter { get; } = addRetryAfter; }