Files

19 lines
375 B
TypeScript

/**
* @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);
}