74757677787980
} @Override public CatchProcessor createProcessor(RouteContext routeContext) throws Exception { Processor childProcessor = routeContext.createProcessor(this); return new CatchProcessor(getExceptionClasses(), childProcessor); }
214215216217218219220
Predicate handle = null; if (handled != null) { handle = handled.createPredicate(routeContext); } return new CatchProcessor(getExceptionClasses(), childProcessor, when, handle); }
213214215216217218219
167168169170171172173
222223224225226227228