@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
16 lines • 511 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RuntimeException = void 0;
const base_exception_1 = require("./base.exception");
/**
* Exception thrown if an error which can only be found on runtime occurs.
* @public
*/
class RuntimeException extends base_exception_1.BaseException {
constructor() {
super(...arguments);
this.name = 'RuntimeException';
}
}
exports.RuntimeException = RuntimeException;
//# sourceMappingURL=runtime.exception.js.map