use of org.apache.camel.AlreadyStoppedException in project camel by apache.
the class DefaultExceptionPolicyStrategyTest method testNoMatch1ThenNull.
public void testNoMatch1ThenNull() {
setupPoliciesNoTopLevelException();
OnExceptionDefinition result = strategy.getExceptionPolicy(policies, null, new AlreadyStoppedException());
assertNull("Should not find an exception policy to use", result);
}
use of org.apache.camel.AlreadyStoppedException in project camel by apache.
the class DefaultExceptionPolicyStrategyTest method testNoMatch1ThenMatchingJustException.
public void testNoMatch1ThenMatchingJustException() {
setupPolicies();
OnExceptionDefinition result = strategy.getExceptionPolicy(policies, null, new AlreadyStoppedException());
assertEquals(type2, result);
}
Aggregations