MyBookmark/Common.Application/Exceptions/AppException.cs

10 lines
335 B
C#

namespace Common.WebApi.Exceptions;
public abstract class AppException( string errorCode, string message, int statusCode,
params object[]? formatArgs) : Exception(message)
{
public string ErrorCode { get; } = errorCode;
public int StatusCode { get; } = statusCode;
public object[]? FormatArgs { get; } = formatArgs;
}