export declare class Exception extends Error { /** * Message of the exception */ message: string; /** * Exception type * @type {string} */ type: string; /** * Stack calling */ stack: string; innerException: Error; /** * HTTP Code Status */ status: number; /** * * @param status * @param message * @param innerException */ constructor(status: any, message?: string, innerException?: any); toString(): string; }