UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

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