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