8 lines
299 B
C#
8 lines
299 B
C#
namespace FlexitimeAPI.Exceptions
|
|
{
|
|
public static class ExceptionConstants
|
|
{
|
|
public const string InvalidUsername = "Invalid Username supplied, the username: {0} is a duplicate or banned.";
|
|
public const string InvalidUserId = "Invalid User Id supplied: {0}";
|
|
}
|
|
} |