I can\'t figure out how to handle more than one kind of exception by @ExceptionHandler.
I need to programmatically deal with these exceptions, for this I\'d need a shar
The @ExceptionHandler value can be set to an array of Exception types.
@ExceptionHandler
The implementation of using exception array as mentioned in Spring documentation will be like:
@ExceptionHandler({ NotFoundException.class, MissingServletRequestParameterException.class })