init
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
export const exceptionMessages = [
|
||||
{ title: 'Unhandled Exception', value: 'Unhandled Exception' },
|
||||
{ title: 'Unable to {0}', value: (entity: string) => `Unable to ${entity}` },
|
||||
{ title: '{0} does not exist', value: (entity: string) => `${entity} does not exist` },
|
||||
{ title: '{0} is not valid', value: (entity: string) => `${entity} is not valid` },
|
||||
{ title: '{0} is not ready', value: (entity: string) => `${entity} is not ready` },
|
||||
{ title: '{0} is not activated', value: (entity: string) => `${entity} is not activated` },
|
||||
{ title: '{0} is not available', value: (entity: string) => `${entity} is not available` },
|
||||
{ title: '{0} has expired', value: (entity: string) => `${entity} has expired` },
|
||||
{ title: '{0} has been deleted', value: (entity: string) => `${entity} has been deleted` },
|
||||
];
|
||||
Reference in New Issue
Block a user