I have Spring MVC and jackson. When I start an incorrect request, Jackson mapping fails and UnrecognizedPropertyException is thrown. I want to handle this excep
UnrecognizedPropertyException
We are using org.apache.commons.lang.exception.ExceptionUtils ...
private myMethod (Throwable t) { if (ExceptionUtils.getRootCause(t) instanceof MyException) ... }