diff --git a/src/reference/docbook/mvc.xml b/src/reference/docbook/mvc.xml index ff0299fb31da8a859a16ab0751e8f46c56071de5..7c482a7ba903dbce91ebaf44f9f4e4043724221a 100644 --- a/src/reference/docbook/mvc.xml +++ b/src/reference/docbook/mvc.xml @@ -3666,7 +3666,7 @@ public class SimpleController { } The @ExceptionHandler value can be set to - an array of Exception types. If an exception is thrown matches one of + an array of Exception types. If an exception is thrown that matches one of the types in the list, then the method annotated with the matching @ExceptionHandler will be invoked. If the annotation value is not set then the exception types listed as method @@ -3687,7 +3687,7 @@ public class SimpleController { To better understand how @ExceptionHandler methods work, consider that in Spring MVC there is only one abstraction - for handling exception and that's the + for handling exceptions and that's the HandlerExceptionResolver. There is a special implementation of that interface, the ExceptionHandlerExceptionResolver, which detects