adminjs
Version:
Admin panel for apps written in node.js
13 lines (11 loc) • 322 B
text/typescript
// eslint-disable-next-line no-shadow
export enum ErrorTypeEnum {
App = 'AppError',
Configuration = 'ConfigurationError',
Forbidden = 'ForbiddenError',
NotFound = 'NotFoundError',
NotImplemented = 'NotImplementedError',
Record = 'RecordError',
Validation = 'ValidationError',
}
export default ErrorTypeEnum