@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
16 lines • 590 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BadFunctionCallException = void 0;
const logic_exception_1 = require("./logic.exception");
/**
* Exception thrown if a callback refers to an undefined function or if some arguments are missing.
* @public
*/
class BadFunctionCallException extends logic_exception_1.LogicException {
constructor() {
super(...arguments);
this.name = 'BadFunctionCallException';
}
}
exports.BadFunctionCallException = BadFunctionCallException;
//# sourceMappingURL=bad-function-call.exception.js.map