Files
rss-nostr-lambda/node_modules/tstl/exception/DomainError.d.ts
T

19 lines
375 B
TypeScript

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