* @return the builder
*/
public OnExceptionDefinition onException(Class... exceptions) {
OnExceptionDefinition last = null;
for (Class ex : exceptions) {
last = last == null ? onException(ex) : last.onException(ex);
}
return last != null ? last : onException(Exception.class);
}
/**