settings/errors/unauthenticated.js

12 lines
294 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 UnauthenticatedError extends CustomAPIError {
constructor(message) {
super(message);
this.statusCode = StatusCodes.UNAUTHORIZED;
}
}
module.exports = UnauthenticatedError;