UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

17 lines (16 loc) 502 B
"use strict"; /** * @author WMXPY * @namespace Error_Document * @description Document Error */ Object.defineProperty(exports, "__esModule", { value: true }); exports.DocumentError = void 0; const imbricate_error_1 = require("../imbricate-error"); class DocumentError extends imbricate_error_1.ImbricateError { constructor(message, type, reason) { super(message, type, reason); Object.setPrototypeOf(this, DocumentError.prototype); } } exports.DocumentError = DocumentError;