UNPKG

@cute-dw/core

Version:

This TypeScript library is the main part of a more powerfull package designed for the fast WEB software development. The cornerstone of the library is the **DataStore** class, which might be useful when you need a full control of the data, but do not need

9 lines (8 loc) 267 B
/** * Superclass of exceptions that can be thrown during the normal operation flow */ export declare class RunTimeException extends Error { private readonly _cause; constructor(message?: string, cause?: Error); get cause(): Error | undefined; }