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