Class ExceptionHandlerExceptionResolver

All Implemented Interfaces:
Aware, InitializingBean, ApplicationContextAware, Ordered, HandlerExceptionResolver

public class ExceptionHandlerExceptionResolver extends AbstractHandlerMethodExceptionResolver implements ApplicationContextAware, InitializingBean
An AbstractHandlerMethodExceptionResolver that resolves exceptions through @ExceptionHandler methods.

Support for custom argument and return value types can be added via setCustomArgumentResolvers(List) and setCustomReturnValueHandlers(List). Or alternatively to re-configure all argument and return value types use setArgumentResolvers(List) and setReturnValueHandlers(List).

Since:
3.1
Author:
Rossen Stoyanchev, Juergen Hoeller, Sebastien Deleuze, Brian Clozel