@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
16 lines • 478 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LengthException = void 0;
const logic_exception_1 = require("./logic.exception");
/**
* Exception thrown if a length is invalid.
* @public
*/
class LengthException extends logic_exception_1.LogicException {
constructor() {
super(...arguments);
this.name = 'LengthException';
}
}
exports.LengthException = LengthException;
//# sourceMappingURL=length.exception.js.map