UNPKG

@rawcmd/core

Version:
13 lines 425 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const generic_1 = require("./generic"); class RuntimeError extends generic_1.GenericError { constructor(code) { super(); this.message = 'Unexpected runtime error.'; this.code = code; Error.captureStackTrace(this, this.constructor); } } exports.RuntimeError = RuntimeError; //# sourceMappingURL=runtime.js.map