@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
17 lines • 640 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RangeException = void 0;
const runtime_exception_1 = require("./runtime.exception");
/**
* Exception thrown to indicate range errors during program execution. Normally this means there was an arithmetic error other than under/overflow.
* This is the runtime version of @see DomainException.
* @public
*/
class RangeException extends runtime_exception_1.RuntimeException {
constructor() {
super(...arguments);
this.name = 'RangeException';
}
}
exports.RangeException = RangeException;
//# sourceMappingURL=range.exception.js.map