Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Mastering Apache Camel

You're reading from  Mastering Apache Camel

Product type Book
Published in Jun 2015
Publisher Packt
ISBN-13 9781782173151
Pages 238 pages
Edition 1st Edition
Languages
Concepts
Authors (3):
Bilgin Ismet Ibryam Bilgin Ismet Ibryam
Profile icon Bilgin Ismet Ibryam
Jean Baptiste Onofre Jean Baptiste Onofre
Profile icon Jean Baptiste Onofre
Jean-Baptiste Onofré Jean-Baptiste Onofré
Profile icon Jean-Baptiste Onofré
View More author details

Types of errors


We can distinguish two main types of errors—recoverable and irrecoverable. Let's have a look at these in detail.

Recoverable errors

A recoverable error is a temporary error. It means that this error might be recovered automatically after a certain time.

An example would be a network connection that is temporarily down, resulting in IOException.

Basically, the exceptions are represented as recoverable errors in Camel.

In that case, Camel stores the exceptions (the recoverable errors) in the exchange using the setException (throwable cause) method:

Exchange.setException(new IOException("My exception"));

As we will see later, an exchange containing an exception will be caught by an error handler, which will react accordingly.

Irrecoverable errors

An irrecoverable error is an error that remains an error no matter how many times you try to perform the same action.

An example would be trying to access a nonexistent table in a database, or accessing a JMS queue that does not exist.

An irrecoverable...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}