A Mule application's main flow calls a private flow via a Flow Reference. The private flow contains an HTTP Request component that might fail with a connectivity error. The private flow has an `On Error Continue` scope that catches this specific error, logs it, and sets the payload to a default JSON object `{"status": "fallback_data"}`. What happens in the main flow after the private flow's error handler executes? ```mermaid flowchart TD subgraph main_flow A[Start] --> B{Flow Reference to private_flow} B --> C[Logger] C --> D[End] end subgraph private_flow E[Start] --> F{HTTP Request} F -- Error --> G[On Error Continue] G --> H[End of private_flow] end ```
