namespace MikrocopApi.Exceptions; public sealed class UnauthorizedException : AppException { public UnauthorizedException(string message) : base(message) { } public override int StatusCode => StatusCodes.Status401Unauthorized; public override string Title => "Unauthorized"; }