This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new cd2bbcca072 (chores) Fixed a typo in the javadoc comment
cd2bbcca072 is described below
commit cd2bbcca07246e9be81378f0842477b17c0ad657
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Thu Apr 7 15:06:30 2022 +0200
(chores) Fixed a typo in the javadoc comment
---
core/camel-api/src/main/java/org/apache/camel/spi/ExceptionHandler.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/camel-api/src/main/java/org/apache/camel/spi/ExceptionHandler.java
b/core/camel-api/src/main/java/org/apache/camel/spi/ExceptionHandler.java
index e1a3d4f948c..986d1d6a13d 100644
--- a/core/camel-api/src/main/java/org/apache/camel/spi/ExceptionHandler.java
+++ b/core/camel-api/src/main/java/org/apache/camel/spi/ExceptionHandler.java
@@ -21,7 +21,7 @@ import org.apache.camel.Exchange;
/**
* A Strategy pattern for handling exceptions; particularly in asynchronous
processes such as consumers.
* <p/>
- * Its important to <b>not</b> throw any exceptions when handling exceptions
as they handler is often invoked in a try
+ * Its important to <b>not</b> throw any exceptions when handling exceptions
as the handler is often invoked in a try
* .. catch logic already
*/
public interface ExceptionHandler {