argos/dmp-frontend/src/app/utilities/types/ApiMessageCode.ts

9 lines
189 B
TypeScript
Raw Normal View History

2018-01-23 16:21:38 +01:00
export enum ApiMessageCode {
NO_MESSAGE = 0,
SUCCESS_MESSAGE = 200,
WARN_MESSAGE = 300,
ERROR_MESSAGE = 400,
2018-05-14 08:44:35 +02:00
DEFAULT_ERROR_MESSAGE = 444,
VALIDATION_MESSAGE = 445
2018-01-23 16:21:38 +01:00
}