@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
9 lines • 330 B
TypeScript
import { LogicException } from './logic.exception';
/**
* Exception thrown when an illegal index was requested. This represents errors that should be detected at compile time.
* @public
*/
export declare class OutOfRangeException extends LogicException {
name: string;
}
//# sourceMappingURL=out-of-range.exception.d.ts.map