Files
NSG_PORTAL_V2/definitions/cms/exception-messages.ts
MoreStrive 2aa5607c48 init
2024-05-30 18:06:50 +07:00

17 lines
857 B
TypeScript

export const exceptionMessages = [
{ title: 'Unhandled exception', value: 'UnhandledException' },
{ title: 'Invalid argument {0}', value: 'InvalidArgument' },
{ title: 'Unable to {0}', value: 'UnableTo' },
{ title: '{0} is unavailable', value: 'Unavailable' },
{ title: '{0} is unauthorized', value: 'Unauthorized' },
{ title: '{0} is unauthenticated', value: 'Unauthenticated' },
{ title: '{0} does not exist', value: 'NotExist' },
{ title: '{0} is not valid', value: 'NotValid' },
{ title: '{0} is not ready', value: 'NotReady' },
{ title: '{0} is not allowed', value: 'NotAllowed' },
{ title: '{0} is not activated', value: 'NotActivated' },
{ title: '{0} has expired', value: 'HasExpired' },
{ title: '{0} has been deleted', value: 'HasDeleted' },
{ title: '{0} failed', value: 'Failed' },
];