@ExceptionHandler({org.springframework.http.converter.HttpMessageNotReadableException.class})
@ResponseBody
public String resolveException(Exception e) throws Exception{
throw e;
}
It catches all exception thrown by this class members.
No comments:
Post a Comment