@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
16 lines • 518 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OverflowException = void 0;
const runtime_exception_1 = require("./runtime.exception");
/**
* Exception thrown when adding an element to a full container.
* @public
*/
class OverflowException extends runtime_exception_1.RuntimeException {
constructor() {
super(...arguments);
this.name = 'OverflowException';
}
}
exports.OverflowException = OverflowException;
//# sourceMappingURL=overflow.exception.js.map