17 lines
857 B
TypeScript
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' },
|
|
];
|
|
|