zcatalyst-cli
Version:
Command Line Tool for CATALYST
15 lines (14 loc) • 579 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const path_1 = require("path");
const index_js_1 = __importDefault(require("../error/index.js"));
const AUTH_DOC = (0, path_1.join)(__dirname, './docs');
class AuthenticationError extends index_js_1.default {
constructor(message, options) {
super(message, Object.assign({ docPath: AUTH_DOC }, options));
}
}
exports.default = AuthenticationError;