error-list
Version:
19 lines • 484 B
text/typescript
// export * from './errors';
export {
BaseError,
HttpError,
ServerHttpError,
BadRequestHttpError,
UnauthorizedHttpError,
ForbiddenHttpError,
NotFoundHttpError,
MethodNotAllowedHttpError,
NotAcceptableHttpError,
GoneHttpError,
UnsupportedMediaTypeHttpError,
UnprocessableEntityHttpError,
ValidationHttpError,
TooManyRequestsHttpError,
NotImplementedHttpError
} from './errors';
export { errorHandler } from './error-handler';