UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

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