will-lib
Version:
Library classes
14 lines (13 loc) • 422 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthenError = void 0;
class AuthenError extends Error {
constructor(message, code, errno, throwable) {
super(message);
this.code = code;
this.errno = errno;
this.throwable = throwable;
Object.setPrototypeOf(this, AuthenError.prototype);
}
}
exports.AuthenError = AuthenError;