-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntity.java
More file actions
31 lines (29 loc) · 898 Bytes
/
Entity.java
File metadata and controls
31 lines (29 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package errors;
/**
* Error entities that throw or generate the errors
*
* The most commonly used entities are listed
*
* Total 8 bits
*
* Users have the ability to extend the entities for their own projects
*/
public class Entity {
public static final int SYSTEM = 0;
public static final int GENERIC = 0;
public static final int UNKNOWN = 1;
public static final int USER = 2;
public static final int DATABASE = 3;
public static final int IMAGE = 4;
public static final int EMAIL = 5;
public static final int FILE = 6;
public static final int ADMIN = 7;
public static final int PASSWORD = 8;
public static final int INPUT = 9;
public static final int NUMERIC = 10;
public static final int CATEGORY = 11;
public static final int NAME = 12;
public static final int PHONE = 13;
public static final int MERCHANT = 14;
public static final int NETWORK = 15;
}