12 lines
244 B
C#
12 lines
244 B
C#
namespace MikrocopApi.Exceptions;
|
|
|
|
public abstract class AppException : Exception
|
|
{
|
|
protected AppException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public abstract int StatusCode { get; }
|
|
public abstract string Title { get; }
|
|
}
|