UNPKG

rjweb-server

Version:

Easy and Robust Way to create a Web Server with Many Easy-to-use Features in NodeJS

19 lines (18 loc) 391 B
export default class RuntimeError { /** * Create a new Runtime Error * @since 9.0.0 */ constructor(cause: string, error: unknown); /** * The Cause of this Error * @since 9.0.0 */ cause: string; /** * The Actual Error * @since 9.0.0 */ error: unknown; /** * Get the Error message * @since 9.0.0 */ toString(): string; }