mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 18:42:56 +00:00
8 lines
261 B
C#
8 lines
261 B
C#
namespace CleanArchitecture.Domain.Errors;
|
|
|
|
public static class ErrorCodes
|
|
{
|
|
public const string CommitFailed = "COMMIT_FAILED";
|
|
public const string ObjectNotFound = "OBJECT_NOT_FOUND";
|
|
public const string InsufficientPermissions = "UNAUTHORIZED";
|
|
} |