@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
16 lines • 589 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutOfBoundsException = void 0;
const runtime_exception_1 = require("./runtime.exception");
/**
* Exception thrown if a value is not a valid key. This represents errors that cannot be detected at compile time.
* @public
*/
class OutOfBoundsException extends runtime_exception_1.RuntimeException {
constructor() {
super(...arguments);
this.name = 'OutOfBoundsException';
}
}
exports.OutOfBoundsException = OutOfBoundsException;
//# sourceMappingURL=out-of-bounds.exception.js.map