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

19 lines
384 B
TypeScript

/**
* @packageDocumentation
* @module std
*/
import { LogicError } from "./LogicError";
/**
* Out-of-range Exception.
*
* @author Jeongho Nam - https://github.com/samchon
*/
export declare class OutOfRange extends LogicError {
/**
* Initializer Constructor.
*
* @param message The error messgae.
*/
constructor(message: string);
}