Uses of Interface
org.apache.camel.spi.ExceptionHandler

Packages that use ExceptionHandler
org.apache.camel.component.file The File Component for working with file systems. 
org.apache.camel.component.seda The SEDA Component for asynchronous SEDA exchanges on a BlockingQueue within a single CamelContext 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.processor A collection of Processor implementations which are used to implement the Enterprise Integration Patterns 
org.apache.camel.processor.aggregate Helper classes for the Aggregator pattern. 
 

Uses of ExceptionHandler in org.apache.camel.component.file
 

Methods in org.apache.camel.component.file that return ExceptionHandler
 ExceptionHandler GenericFileOnCompletion.getExceptionHandler()
           
 

Methods in org.apache.camel.component.file with parameters of type ExceptionHandler
 void GenericFileOnCompletion.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 

Uses of ExceptionHandler in org.apache.camel.component.seda
 

Methods in org.apache.camel.component.seda that return ExceptionHandler
 ExceptionHandler SedaConsumer.getExceptionHandler()
           
 

Methods in org.apache.camel.component.seda with parameters of type ExceptionHandler
 void SedaConsumer.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 

Uses of ExceptionHandler in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement ExceptionHandler
 class BridgeExceptionHandlerToErrorHandler
          An ExceptionHandler that uses the DefaultConsumer to process the caused exception to send the message into the Camel routing engine which allows to let the routing engine handle the exception.
 class LoggingExceptionHandler
          A default implementation of ExceptionHandler which uses a CamelLogger to log the exception.
 

Methods in org.apache.camel.impl that return ExceptionHandler
 ExceptionHandler DefaultConsumer.getExceptionHandler()
           
 ExceptionHandler PollingConsumerSupport.getExceptionHandler()
           
 ExceptionHandler RoutePolicySupport.getExceptionHandler()
           
 ExceptionHandler EventDrivenPollingConsumer.getInterruptedExceptionHandler()
           
 

Methods in org.apache.camel.impl with parameters of type ExceptionHandler
 void DefaultConsumer.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 void PollingConsumerSupport.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 void RoutePolicySupport.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 void EventDrivenPollingConsumer.setInterruptedExceptionHandler(ExceptionHandler interruptedExceptionHandler)
           
 

Uses of ExceptionHandler in org.apache.camel.processor
 

Methods in org.apache.camel.processor that return ExceptionHandler
 ExceptionHandler StreamResequencer.getExceptionHandler()
          Returns this resequencer's exception handler.
 ExceptionHandler BatchProcessor.getExceptionHandler()
          Deprecated.  
 

Methods in org.apache.camel.processor with parameters of type ExceptionHandler
 void BatchProcessor.setExceptionHandler(ExceptionHandler exceptionHandler)
          Deprecated.  
 

Uses of ExceptionHandler in org.apache.camel.processor.aggregate
 

Methods in org.apache.camel.processor.aggregate that return ExceptionHandler
 ExceptionHandler AggregateProcessor.getExceptionHandler()
           
 

Methods in org.apache.camel.processor.aggregate with parameters of type ExceptionHandler
 void AggregateProcessor.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 



Apache Camel