@amirmarmul/waba-common
Version:

12 lines (11 loc) • 449 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WrongAuthenticationTokenError = void 0;
const AppError_1 = require("../../core/errors/AppError");
class WrongAuthenticationTokenError extends AppError_1.AppError {
constructor() {
super('Authentication token missing', 401);
}
}
exports.WrongAuthenticationTokenError = WrongAuthenticationTokenError;
exports.default = WrongAuthenticationTokenError;