From 0a6b1167a7d79e9b52c55f271ee4d265b3f5dba1 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Mon, 27 Aug 2012 15:04:11 +0200 Subject: [PATCH] Improved Javadoc --- .../mvc/method/annotation/ExceptionHandlerSupport.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation/ExceptionHandlerSupport.java b/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation/ExceptionHandlerSupport.java index f9345ee72b..c1334f52e5 100644 --- a/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation/ExceptionHandlerSupport.java +++ b/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation/ExceptionHandlerSupport.java @@ -48,9 +48,9 @@ import org.springframework.web.servlet.mvc.multiaction.NoSuchRequestHandlingMeth /** * A convenient base for classes with {@link ExceptionHandler} methods providing * infrastructure to handle standard Spring MVC exceptions. The functionality is - * equivalent to that of the {@link DefaultHandlerExceptionResolver} except it - * can be customized to write error content to the body of the response. If there - * is no need to write error content, use {@code DefaultHandlerExceptionResolver} + * equivalent to that of the {@link org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver DefaultHandlerExceptionResolver} + * except it can be customized to write error content to the body of the response. If + * there is no need to write error content, use {@code DefaultHandlerExceptionResolver} * instead. * *

It is expected the sub-classes will be annotated with