export interface IABBError {
    message: string;
    /**
     * @type IABBSettingsReduxState.backendURL
     * @description defined in core
     */
    backendURL: string;
    /**
     * @type IABBSettings.createDataMethod
     * @description defined in core
     */
    createDataMethod: string;
    data?: object;
    /**
     * @type string
     * @description error code. structure: <ApplicationArea>-<Component>-<Code>
     */
    code: string;
    /**
     * @type boolean
     * @description prevents the error to be logged to the server
     */
    preventLogToServer?: boolean;
}
