/** * @packageDocumentation * @module std */ import { RuntimeError } from "./RuntimeError"; /** * Overflow Error. * * @author Jeongho Nam - https://github.com/samchon */ export declare class OverflowError extends RuntimeError { /** * Initializer Constructor. * * @param message The error messgae. */ constructor(message: string); } //# sourceMappingURL=OverflowError.d.ts.map