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

19 lines
385 B
TypeScript

/**
* @packageDocumentation
* @module std
*/
import { RuntimeError } from "./RuntimeError";
/**
* Overflow Error.
*
* @author Jeongho Nam - https://github.com/samchon
*/
export declare class OverflowError extends RuntimeError {
/**
* Initializer Constructor.
*
* @param message The error messgae.
*/
constructor(message: string);
}