Files

19 lines
374 B
TypeScript

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