Add initial implementation of API, database, and user management components.
This commit is contained in:
11
MikrocopApi/Exceptions/ConflictException.cs
Normal file
11
MikrocopApi/Exceptions/ConflictException.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace MikrocopApi.Exceptions;
|
||||
|
||||
public sealed class ConflictException : AppException
|
||||
{
|
||||
public ConflictException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public override int StatusCode => StatusCodes.Status409Conflict;
|
||||
public override string Title => "Conflict";
|
||||
}
|
||||
Reference in New Issue
Block a user