natural-language-api-google/errors/unauthorized.js

12 lines
285 B
JavaScript
Raw Permalink Normal View History

2023-10-09 17:22:48 +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;