Enumerates the different error types used throughout the application.
export enum ErrorType { UNKNOWN = "unknown", VALIDATION = "validation", NETWORK = "network", AUTH = "auth", SERVER = "server", CLIENT = "client", STORAGE = "storage", SYSTEM = "system", IMPORT = "import",} Copy
export enum ErrorType { UNKNOWN = "unknown", VALIDATION = "validation", NETWORK = "network", AUTH = "auth", SERVER = "server", CLIENT = "client", STORAGE = "storage", SYSTEM = "system", IMPORT = "import",}
Enumerates the different error types used throughout the application.
Source