Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This is best illustrated with an exception:

Code Block
java
languagejava
onException(IOException.class)
  .maximumRedeliveries(3);

onException(OrderFailedException.class)
  .maximumRedeliveries(2);

...