UNPKG

will-lib

Version:
14 lines (13 loc) 422 B
"use strict"; 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;