@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
10 lines • 407 B
TypeScript
import { RuntimeException } from './runtime.exception';
/**
* Exception thrown to indicate range errors during program execution. Normally this means there was an arithmetic error other than under/overflow.
* This is the runtime version of @see DomainException.
* @public
*/
export declare class RangeException extends RuntimeException {
name: string;
}
//# sourceMappingURL=range.exception.d.ts.map