@rightcapital/exceptions
Version:
TypeScript Exception definitions inspired by PHP SPL Exceptions etc...
9 lines • 320 B
TypeScript
import { RuntimeException } from './runtime.exception';
/**
* Exception thrown when performing an invalid operation on an empty container, such as removing an element.
* @public
*/
export declare class UnderflowException extends RuntimeException {
name: string;
}
//# sourceMappingURL=underflow.exception.d.ts.map