This commit is contained in:
MoreStrive
2024-05-30 18:06:50 +07:00
parent 8ca31c6b18
commit 2aa5607c48
147 changed files with 5815 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
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' },
];