namespace MikrocopApi.Exceptions; public sealed class NotFoundException : AppException { public NotFoundException(string message) : base(message) { } public override int StatusCode => StatusCodes.Status404NotFound; public override string Title => "Not Found"; }