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