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