initial commit
This commit is contained in:
8
Application/Exceptions/BaseException.cs
Normal file
8
Application/Exceptions/BaseException.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Domain.Enums;
|
||||
|
||||
namespace Application.Exceptions;
|
||||
|
||||
public class BaseException(EErrorCategory category, string message) : Exception(message)
|
||||
{
|
||||
public readonly EErrorCategory Category = category;
|
||||
}
|
||||
Reference in New Issue
Block a user