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