/** * Represents the base class for an exception. */ export declare class Exception extends Error { /** * Initializes a new instance of the {@link Exception} class. * * Remarks: instanceof won't work if the target is es5. * Make sure to target a newer version of ECMAScript if you use instanceof to check the type of the {Exception}. * @param {string} [message] - Optional Error message. */ constructor(message?: string); } //# sourceMappingURL=Exception.d.ts.map