12 lines
284 B
C#
12 lines
284 B
C#
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";
|
|
}
|