@zuu/owl
Version:
Zuu's Experimental GraphQL Implementation
10 lines • 379 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class UnauthorizedError extends Error {
constructor() {
super("Access denied! You need to be authorized to perform this action!");
Object.setPrototypeOf(this, new.target.prototype);
}
}
exports.UnauthorizedError = UnauthorizedError;
//# sourceMappingURL=UnauthorizedError.js.map