settings/errors/unauthorized.js

12 lines
285 B
JavaScript
Raw Permalink Normal View History

2024-07-30 11:26:42 +00:00
const { StatusCodes } = require('http-status-codes');
const CustomAPIError = require('./custom-api');
class UnauthorizedError extends CustomAPIError {
constructor(message) {
super(message);
this.statusCode = StatusCodes.FORBIDDEN;
}
}
module.exports = UnauthorizedError;