org.apache.camel
Class CamelExchangeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.apache.camel.CamelException
              extended by org.apache.camel.CamelExchangeException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AmbiguousMethodCallException, CamelAuthorizationException, CamelUnitOfWorkException, ClosedCorrelationKeyException, DirectConsumerNotAvailableException, ExchangeTimedOutException, InvalidPayloadException, MethodNotFoundException, NoSuchHeaderException, NoSuchPropertyException, RollbackExchangeException, ValidationException

public class CamelExchangeException
extends CamelException

An exception caused by a specific message Exchange

Version:
See Also:
Serialized Form

Constructor Summary
CamelExchangeException(String message, Exchange exchange)
           
CamelExchangeException(String message, Exchange exchange, Throwable cause)
           
 
Method Summary
static String createExceptionMessage(String message, Exchange exchange, Throwable cause)
          Creates an exception message with the provided details.
 Exchange getExchange()
          Returns the exchange which caused the exception
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CamelExchangeException

public CamelExchangeException(String message,
                              Exchange exchange)

CamelExchangeException

public CamelExchangeException(String message,
                              Exchange exchange,
                              Throwable cause)
Method Detail

getExchange

public Exchange getExchange()
Returns the exchange which caused the exception


createExceptionMessage

public static String createExceptionMessage(String message,
                                            Exchange exchange,
                                            Throwable cause)
Creates an exception message with the provided details.

All fields is optional so you can pass in only an exception, or just a message etc. or any combination.

Parameters:
message - the message
exchange - the exchange
cause - the caused exception
Returns:
an error message (without stacktrace from exception)


Apache CAMEL