@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
16 lines • 569 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnderflowException = void 0;
const runtime_exception_1 = require("./runtime.exception");
/**
* Exception thrown when performing an invalid operation on an empty container, such as removing an element.
* @public
*/
class UnderflowException extends runtime_exception_1.RuntimeException {
constructor() {
super(...arguments);
this.name = 'UnderflowException';
}
}
exports.UnderflowException = UnderflowException;
//# sourceMappingURL=underflow.exception.js.map