14 lines
316 B
C#
14 lines
316 B
C#
namespace CPRNIMS.WebApi.Exceptions
|
|
{
|
|
public class AppException : Exception
|
|
{
|
|
public int StatusCode { get; }
|
|
|
|
public AppException(string message, int statusCode = StatusCodes.Status400BadRequest)
|
|
: base(message)
|
|
{
|
|
StatusCode = statusCode;
|
|
}
|
|
}
|
|
}
|