UNPKG

will-core

Version:
14 lines (13 loc) 410 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.VerifyError = void 0; class VerifyError extends Error { constructor(message, code, errno, state) { super(message); this.code = code; this.errno = errno; this.state = state; Object.setPrototypeOf(this, VerifyError.prototype); } } exports.VerifyError = VerifyError;