21 lines
696 B
C#
21 lines
696 B
C#
using Core.Abstractions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Core.Enumerations {
|
|
public class Errors : Enumeration {
|
|
public static readonly Errors Generic = new(0, "generic error occured");
|
|
|
|
public static readonly Errors NullOrWhiteSpace = new(1, "is null or white space");
|
|
public static readonly Errors WrongOrNotManaged = new(2, "is wrong or not managed");
|
|
public static readonly Errors NullOrEmpty = new(3, "is null or empty");
|
|
public static readonly Errors NotMatched = new(4, "not matched");
|
|
|
|
|
|
private Errors(int id, string displayName) : base(id, displayName) { }
|
|
}
|
|
}
|