namespace CPRNIMS.WebApi.Exceptions { public class AppException : Exception { public int StatusCode { get; } public AppException(string message, int statusCode = StatusCodes.Status400BadRequest) : base(message) { StatusCode = statusCode; } } }