mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
9 lines
351 B
C#
9 lines
351 B
C#
namespace Application.Errors;
|
|
|
|
public static class MarshalGuardErrors
|
|
{
|
|
public static readonly Error NotFound = new("Error.MarshalGuard.NotFound",
|
|
"The marshal guard with the specified identifier was not found");
|
|
|
|
public static readonly Error IdConflict = new("Error.MarshalGuard.IdConflict", "There is a conflict with the id's");
|
|
} |