Uses of Class
org.apache.camel.model.CatchDefinition

Packages that use CatchDefinition
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
 

Uses of CatchDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return CatchDefinition
 CatchDefinition CatchDefinition.exceptionClasses(Class<? extends Throwable> exception)
          Sets the exception class that the CatchType want to catch
 CatchDefinition CatchDefinition.exceptionClasses(List<Class<? extends Throwable>> exceptionClasses)
          Sets the exceptionClasses of the CatchType
 CatchDefinition CatchDefinition.handled(boolean handled)
          Deprecated. will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception from a Processor or use the ProcessorDefinition.throwException(Exception)
 CatchDefinition CatchDefinition.handled(Expression handled)
          Deprecated. will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception from a Processor or use the ProcessorDefinition.throwException(Exception)
 CatchDefinition CatchDefinition.handled(Predicate handled)
          Deprecated. will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception from a Processor or use the ProcessorDefinition.throwException(Exception)
 CatchDefinition CatchDefinition.onWhen(Predicate predicate)
          Sets an additional predicate that should be true before the onCatch is triggered.
 

Methods in org.apache.camel.model that return types with arguments of type CatchDefinition
 List<CatchDefinition> TryDefinition.getCatchClauses()
           
 



Apache Camel