This is an automated email from the ASF dual-hosted git repository. pascalschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new ebab2d8 Exception Clause documentation: Minimal grammar improvement ebab2d8 is described below commit ebab2d8d351684f810e6bc6fc315e47e63f4bb8e Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Sat Jun 20 12:06:35 2020 +0200 Exception Clause documentation: Minimal grammar improvement --- docs/user-manual/modules/ROOT/pages/exception-clause.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-manual/modules/ROOT/pages/exception-clause.adoc b/docs/user-manual/modules/ROOT/pages/exception-clause.adoc index 2c52cff..aea6000 100644 --- a/docs/user-manual/modules/ROOT/pages/exception-clause.adoc +++ b/docs/user-manual/modules/ROOT/pages/exception-clause.adoc @@ -747,7 +747,7 @@ from("jms:queue:order:input") .to("bean:handleOrder"); ---- -Then the message has been enriched with a header named application after the original message was received in the JMS endpoint. And in case of an error then the `onException` +Then the message has been enriched with a header named application after the original message was received by the JMS endpoint. And in case of an error `onException` will handle the exception and use the original message body and the headers from the current message as-is, which means the headers will include the application header. [[ExceptionClause-AdvancedUsageofExceptionClause]]