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