export declare class HonionException extends Error {
    readonly error?: string | {
        message: string;
    } | undefined;
    constructor(error?: string | {
        message: string;
    } | undefined);
    breakthrough: boolean;
    setBreakthrough(breakthrough?: boolean): this;
}
