@rawcmd/core
Version:
Rawcmd core package.
13 lines • 425 B
JavaScript
;
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