17 lines
468 B
JavaScript
17 lines
468 B
JavaScript
|
const CustomAPIError = require('./custom-api');
|
||
|
const UnauthenticatedError = require('./unauthenticated');
|
||
|
const NotFoundError = require('./not-found');
|
||
|
const BadRequestError = require('./bad-request');
|
||
|
const UnauthorizedError = require('./unauthorized');
|
||
|
const InternalServerError = require('./internal-server-error');
|
||
|
|
||
|
|
||
|
module.exports = {
|
||
|
CustomAPIError,
|
||
|
UnauthenticatedError,
|
||
|
NotFoundError,
|
||
|
BadRequestError,
|
||
|
UnauthorizedError,
|
||
|
InternalServerError
|
||
|
};
|