@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
9 lines • 319 B
TypeScript
import { LogicException } from './logic.exception';
/**
* Exception thrown if a callback refers to an undefined function or if some arguments are missing.
* @public
*/
export declare class BadFunctionCallException extends LogicException {
name: string;
}
//# sourceMappingURL=bad-function-call.exception.d.ts.map