/** * @class * Extends built-in Error class to be able to provide a custom error message along with the cause (i.e. stack trace) */ export declare class TraceableError extends Error { trace: Error | undefined; /** * @param message - Custom message to display in console * @param innerError - The captured stack trace that caused the error */ constructor(message?: string, innerError?: string); }