@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
16 lines • 482 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IgnorableException = void 0;
const base_exception_1 = require("./base.exception");
/**
* This Exception could be ignore
* @public
*/
class IgnorableException extends base_exception_1.BaseException {
constructor() {
super(...arguments);
this.name = 'IgnorableException';
}
}
exports.IgnorableException = IgnorableException;
//# sourceMappingURL=ignorable.exception.js.map