Contact Us 1-800-596-4880

Error Handlers

This version of Mule reached its End of Life on May 2, 2023, when Extended Support ended.

Deployments of new applications to CloudHub that use this version of Mule are no longer allowed. Only in-place updates to applications are permitted.

MuleSoft recommends that you upgrade to the latest version of Mule 4 that is in Standard Support so that your applications run with the latest fixes and security enhancements.

Errors that occur in Mule belong to one of two major categories:

System Errors

Mule throws a system error when an exception occurs at the system level and no Mule event is involved. A system error handler manages exceptions that occur:

  • During application startup.

  • When a connection to an external system fails.

When a system error occurs, Mule sends an error notification to registered listeners, logs the error, and if the error is caused by a connection failure, executes a reconnection strategy.

System error handlers are not configurable in Mule.

Messaging Errors

Mule throws a messaging error (a Mule error) whenever a problem occurs within a flow of a Mule app, where Mule events and the messages they contain are processed.

You can handle Mule messaging errors in more than one way:

  • You can rely on the default error handling mechanism.

  • Within a flow, you can set up On-Error components (On Error Continue and On Error Propagate) inside the flow’s built-in Error Handler component. These components can contain any number of components to process the error.

    The following figure shows what happens when an event processor, such as an HTTP request or database operation, throws an error:

    error handling 39be7
  • Outside a flow, you can set up an Error Handler component and reference it from other Error Handler configurations. The global Error Handler can also contain On-Error components and their contents.

  • It is also possible to set up error handling from within a Try scope that resides in a flow. The scope contains a built-in Error Handler in which you can configure On-Error components and their contents.

Using Default Error Handling for Messages

By default, unhandled messaging errors are logged and propagated. When a flow is processing a Mule message that raises an error, the normal execution of the flow stops, and the process transfers to the flow’s default error handler, which propagates the error.

The following example shows a simple Mule app configuration that relies on default error handling instead of using explicitly configured error handling components to manage the error.

error handlers default

The XML for the default error handling example looks like this:

<http:listener-config name="HTTP_Listener_config" doc:name="HTTP Listener config" >
  <http:listener-connection host="0.0.0.0" port="8081" />
</http:listener-config>
<http:request-config name="HTTP_Request_configuration" doc:name="HTTP Request configuration" >
  <http:request-connection host="jsonplaceholder.typicode.com" port="80" />
</http:request-config>
<flow name="error-handlers-example" >
  <http:listener doc:name="Listener" config-ref="HTTP_Listener_config" path="/users"/>
  <http:request method="GET" doc:name="Request" config-ref="HTTP_Request_configuration" path="/somebadrequest"/>
</flow>

After you start a Mule app with this configuration and trigger the HTTP listener by loading http://0.0.0.0:8081/users (for example, into a browser), the flow makes an HTTP request (http://jsonplaceholder.typicode.com:80/somebadrequest) for a file that does not exist. As a result, the Studio console logs and propagates the error to the web browser.

  • The Studio console prints an error message. The message indicates that the default handler, OnErrorPropagateHandler, propagates a 404 error returned from the HTTP GET request. Mule identifies this error as HTTP:NOT_FOUND.

    ****************************************************************************
    
    ERROR 2019-08-05 21:49:38,323
      [[error-handlers-normal].http.requester.HTTP_Request_configuration.04 SelectorRunner]
      [event: ] org.mule.runtime.core.internal.exception.OnErrorPropagateHandler:
    ****************************************************************************
    Message               : HTTP GET on resource 'http://jsonplaceholder.typicode.com:80/somebadrequest' failed: not found (404).
    Error type            : HTTP:NOT_FOUND
    Element               : error-handlers-example/processors/0 @ error-handlers-normal:error-handlers-normal.xml:16 (Request)
    Element XML           : <http:request method="GET"
                                  doc:name="Request"
                                  doc:id="51e94e98-2a62-4fa7-98e0-942bed31ee11"
                                  config-ref="HTTP_Request_configuration"
                                  path="/somebadrequest">
                            </http:request>
    
      (set debug level logging or '-Dmule.verbose.exceptions=true' for everything)
    ****************************************************************************
  • A description of the HTTP:NOT_FOUND error appears in the browser tab you use to trigger the listener:

    HTTP GET on resource 'http://jsonplaceholder.typicode.com:80/somebadrequest'
    failed: not found (404).

    This Mule error description appears in the browser for two reasons: The default error handler uses an On Error Propagate process (OnErrorPropagateHandler), which causes the flow to fail and the HTTP listener to prepare an error response for the 404 associated with the unfound file. In addition, the HTTP listener is using default error (error.description) and success (payload) responses to return the message body, instead of custom responses, so the browser shows the description of the error.

Using On-Error Components to Handle Messaging Errors

Instead of relying on the default error-handling mechanism, you can use On-Error components (On Error Continue and On Error Propagate) inside a built-in or external Error Handler component.

The following example shows a simple flow that is configured in Studio to return the results of an HTTP request when the HTTP listener is triggered. Unlike the default error-handling example, this example configures On Error Continue (on-error-continue) inside the flow’s built-in Error Handler (error-handler) component, and On Error Continue contains a Logger that writes a description of the error.

error handlers flow

The XML for the example looks like this:

<http:listener-config name="HTTP_Listener_config" doc:name="HTTP Listener config" >
  <http:listener-connection host="0.0.0.0" port="8081" />
</http:listener-config>
<http:request-config name="HTTP_Request_configuration" doc:name="HTTP Request configuration" >
  <http:request-connection host="jsonplaceholder.typicode.com" port="80" />
</http:request-config>
<flow name="error-handlers-normalFlow" >
  <http:listener doc:name="Listener" config-ref="HTTP_Listener_config" path="/users"/>
  <http:request method="GET" config-ref="HTTP_Request_configuration" path="/somebadrequest"/>
  <logger level="INFO" doc:name="Logger" />
  <error-handler>
    <on-error-continue enableNotifications="true" logException="true" doc:name="On Error Continue" >
      <logger level="ERROR" doc:name="Logger" message="#[error.description]"/>
    </on-error-continue>
  </error-handler>
</flow>

As in the default error-handling example, the requested page is not found, so the flow returns a 404 error that Mule identifies as an HTTP:NOT_FOUND error. However, in this case, the tab of the browser used to trigger the HTTP listener is blank because the error is not propagated. With On Error Continue, the flow in the example is treated as though it ends successfully with a 200 for the GET request, even though the page is not found. The HTTP listener executes the behavior for the default success response (returning payload content as the message body). Because the page was not found, there is no content to display in the browser, so the browser tab is blank.

The Studio console also prints an error message (the first ERROR message below) indicating that OnErrorContinueHandler is handling the error, and it prints an ERROR message from the logger (the second ERROR below) that describes the Mule error (an error.description, see Selector Expressions for Mule Errors).

ERROR 2019-08-05 14:24:06,825
[[error-handlers-normal].http.requester.HTTP_Request_configuration.03 SelectorRunner]
  [event: ] org.mule.runtime.core.internal.exception.OnErrorContinueHandler:
********************************************************************************
Message               : HTTP GET on resource 'http://jsonplaceholder.typicode.com:80/somebadrequest' failed: not found (404).
Error type            : HTTP:NOT_FOUND
Element               : error-handlers-normalFlow/processors/0 @ error-handlers-normal:error-handlers-normal.xml:15 (Request)
Element XML           : <http:request method="GET" doc:name="Request"
                           doc:id="51e94e98-2a62-4fa7-98e0-942bed31ee11"
                           config-ref="HTTP_Request_configuration"
                           path="/somebadrequest">
                        </http:request>

  (set debug level logging or '-Dmule.verbose.exceptions=true' for everything)
********************************************************************************

ERROR  2019-08-05 14:24:06,827 [[error-handlers-normal].http.requester.HTTP_Request_configuration.03 SelectorRunner]
      [event: 5b2dbd90-b7c7-11e9-918b-8c8590a99d48] org.mule.runtime.core.internal.processor.LoggerMessageProcessor:
      HTTP GET on resource 'http://jsonplaceholder.typicode.com:80/somebadrequest' failed: not found (404).

If you instead create the same Mule app using On Error Propagate (on-error-propagate) instead of On Error Continue (on-error-continue), you receive the same error messages in the Studio console, but you also see the logged error message in your browser. This behavior is identical to the default error handling behavior because both use On Error Propagate.

Note that within each On-Error component, the error path you define can incorporate any number of event processors to handle specific error types as precisely as you want. You can select specific Mule errors for the On-Error component to handle. The Error Handler component routes an error to the first On-Error component that matches the error.

For more complex error handling configurations at the flow level, see Introduction to Mule 4: Error Handlers. For more information about On Error Continue and On Error Propagate, see On-Error components.

Referencing a Global Error Handler

A global error handler can be useful if you want more than one flow or Try scope to handle errors in the same way. You can create reuse configurations by providing a reference to an error handler:

Setting a Global Error-Handling Configuration

The following XML configuration defines a default error-handling configuration that uses <configuration doc:name="Configuration" defaultErrorHandler-ref="allErrorHandler" /> to reference the <error-handler name="allErrorHandler"/> configuration.

<http:listener-config name="HTTP_Listener_config" doc:name="HTTP Listener config" >
  <http:listener-connection host="0.0.0.0" port="8081" />
</http:listener-config>
<http:request-config name="HTTP_Request_configuration" doc:name="HTTP Request configuration" >
  <http:request-connection host="json.typicode.com/" port="80" />
</http:request-config>
<configuration doc:name="Configuration" defaultErrorHandler-ref="allErrorHandler" />
<flow name="someFlow" >
  <http:listener doc:name="Listener" config-ref="HTTP_Listener_config" path="/users"/>
  <http:request method="GET" doc:name="Request" config-ref="HTTP_Request_configuration" path="/somebadrequest"/>
</flow>
<error-handler name="allErrorHandler" >
  <on-error-continue enableNotifications="true" logException="true" doc:name="On Error Continue" >
    <set-payload value="#[error.description]" doc:name="Set Payload" />
  </on-error-continue>
</error-handler>

In the Studio UI, the global error-handling example looks like this:

error handlers global

The example includes two main components for handling errors, an Error Handler (error-handler) with embedded components that are visible in the Studio canvas and a global error-handling configuration, which is not visible in the canvas. The flow (someFlow) in the UI example illustrates that the Error Handler component lies outside any flow in the Mule app.

Because the request produces an HTTP:NOT_FOUND error, the Studio console prints an error message indicating that OnErrorContinueHandler is handling the error. On Error Continue configurations do not propagate the errors they handle (see Using On-Error Components to Handle Messaging Errors).

To set up the global error-handling example through the Studio UI instead of writing the configuration in XML markup:

  1. Drag the Error Handler component from the Mule Palette to the Studio canvas, and name it allErrorHandler.

    Notice that the component is not part of any flow.

  2. Drag the On Error Continue component into the Error Handler component.

  3. Drag a Set Payload component into the On Error Continue component.

    Note that the Set Payload component is an example. You can use other components, such as a Logger, and you can write your own error message inside that component. The Set Payload example uses a Mule variable for the error description (see the error variable in Predefined Variables for details).

  4. Create a global error-handling reference in Studio:

    1. Click Global Elements to open Global Configuration Elements.

      Global Elements is located below the Studio canvas.

    2. In Global Configuration Elements, click Create to open the Choose Global Type dialog.

      error handling global type
    3. From the dialog, select Global Configuration -→ Configuration, and then click OK to open the Configuration dialog.

      error handling global config
    4. From the select Configuration dialog, select allErrorHandler for the Default Error Handler field, and click OK.

  5. Set up the HTTP listener and HTTP request components using the values described in the XML.

  6. Check that the XML configuration looks correct by clicking Configuration XML (located below the Studio canvas).

Referencing an Error-Handling Configuration from a Flow

The configuration of some elements in these examples is XML-only.

A flow can reference a global error handler that resides outside the flow. The flow logs all its errors through a reference.

Example: XML Configuration for the App
<error-handler name="loggingErrorHandler">
    <on-error-continue>
        <logger message="#['Error: ' ++ error.description]"/>
    </on-error-continue>
</error-handler>

<flow name="withSharedHandler">
    <http:request url="http://example.com"/>
    <error-handler ref="loggingErrorHandler"/>
</flow>

In this XML example, the global error handler is configured through an <error-handler/> element named loggingErrorHandler. The flow references the error handler with <error-handler ref="loggingErrorHandler"/>.

To reference a global error handler configuration from a flow in Studio:

  1. From Studio, drag an Error Handler component from the Mule Palette to the canvas, and configure it components through the UI.

  2. In the Mule app, click Configuration XML (located below the Studio canvas).

  3. (XML-only configuration) Within your <flow/> element, type the XML for the reference, for example, <error-handler ref="loggingErrorHandler"/>.

The following example references a global On Error Continue element (<on-error-continue/>) using <on-error ref="loggingErrorHandler"/> within an <error-handler/> element. Both require manual configuration through the Configuration XML, rather than the UI.

<http:listener-config name="HTTP_Listener_config" doc:name="HTTP Listener config" >
	<http:listener-connection host="0.0.0.0" port="8081" />
</http:listener-config>
<on-error-continue name="loggingErrorHandler">
    <logger message="#['Error: ' ++ error.description]" level="INFO"/>
</on-error-continue>

<flow name="withSharedHandler">
  <http:listener doc:name="Listener" config-ref="HTTP_Listener_config" path="/"/>
  <http:request url="http://jsonplaceholder.typicode.com/badrequestbad" method="GET"/>
  <error-handler >
    <on-error ref="loggingErrorHandler"/>
  </error-handler>
</flow>