Asraf-Uddin-Ahmed opened a new issue, #481:
URL: https://github.com/apache/camel-karavan/issues/481

   I want to implement the following Java part of `exception` and `error` 
handling to Karavan.
   
   ```java
   errorHandler(deadLetterChannel("file:./deadmessage?fileExist=Append")
         .maximumRedeliveries(3)
         .redeliveryDelay(2000)
         .onPrepareFailureRef("failureProcessor"));
   
   onException(Exception.class)
         .handled(true)
         .to("slack:#{{slack.channel}}")
         .to("stream:out");
   ```
   I have no clue how to implement it. Can anyone help me?
   
   **Java Version: 11
   Camel Version: 3.18.2
   Karavan Version: 3.18.2**


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to