1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/common/entities/Error.ts

27 lines
459 B
TypeScript
Raw Normal View History

export enum ErrorCodes {
2018-05-29 02:03:12 +08:00
NOT_AUTHENTICATED = 1,
ALREADY_AUTHENTICATED = 2,
NOT_AUTHORISED = 3,
PERMISSION_DENIED = 4,
CREDENTIAL_NOT_FOUND = 5,
2018-05-29 02:03:12 +08:00
USER_CREATION_ERROR = 6,
2018-05-29 02:03:12 +08:00
GENERAL_ERROR = 7,
THUMBNAIL_GENERATION_ERROR = 8,
SERVER_ERROR = 9,
2016-07-07 18:26:36 +08:00
2018-05-29 02:03:12 +08:00
USER_MANAGEMENT_DISABLED = 10,
2017-07-04 01:17:49 +08:00
2018-05-29 02:03:12 +08:00
INPUT_ERROR = 11,
2016-05-09 23:04:56 +08:00
2018-05-29 02:03:12 +08:00
SETTINGS_ERROR = 12
}
2017-07-15 18:47:11 +08:00
export class ErrorDTO {
2017-07-09 20:23:50 +08:00
constructor(public code: ErrorCodes, public message?: string, public details?: any) {
}
}