NonInventPurchasingSystem/CPRNIMS.WebApi/Exceptions/AppException.cs
2026-02-12 10:41:44 +08:00

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;
}
}
}