Add initial implementation of API, database, and user management components.
This commit is contained in:
11
MikrocopApi/Exceptions/AppException.cs
Normal file
11
MikrocopApi/Exceptions/AppException.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace MikrocopApi.Exceptions;
|
||||
|
||||
public abstract class AppException : Exception
|
||||
{
|
||||
protected AppException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public abstract int StatusCode { get; }
|
||||
public abstract string Title { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user