UNPKG

397 BTypeScriptView Raw
1/**
2 * A base class for the WrappedException that can be used to identify
3 * a WrappedException from ExceptionHandler without adding circular
4 * dependency.
5 */
6export declare class BaseWrappedException extends Error {
7 constructor(message: string);
8 wrapperMessage: string;
9 wrapperStack: any;
10 originalException: any;
11 originalStack: any;
12 context: any;
13 message: string;
14}