@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
16 lines • 581 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutOfRangeException = void 0;
const logic_exception_1 = require("./logic.exception");
/**
* Exception thrown when an illegal index was requested. This represents errors that should be detected at compile time.
* @public
*/
class OutOfRangeException extends logic_exception_1.LogicException {
constructor() {
super(...arguments);
this.name = 'OutOfRangeException';
}
}
exports.OutOfRangeException = OutOfRangeException;
//# sourceMappingURL=out-of-range.exception.js.map