From 4391b299d9dd3a668bd45a4347bb52620d19e122 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Mon, 12 Oct 2015 18:11:48 +0200 Subject: [PATCH] Annotation-level javadoc for Model parameter on exception handler methods Issue: SPR-13546 --- .../web/bind/annotation/ExceptionHandler.java | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/bind/annotation/ExceptionHandler.java b/spring-web/src/main/java/org/springframework/web/bind/annotation/ExceptionHandler.java index b21bd6ac5c7..98cbd6a8953 100644 --- a/spring-web/src/main/java/org/springframework/web/bind/annotation/ExceptionHandler.java +++ b/spring-web/src/main/java/org/springframework/web/bind/annotation/ExceptionHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2014 the original author or authors. + * Copyright 2002-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,8 +27,8 @@ import java.lang.annotation.Target; * handler methods. Provides consistent style between Servlet and Portlet * environments, with the semantics adapting to the concrete environment. * - *

Handler methods which are annotated with this annotation are allowed - * to have very flexible signatures. They may have arguments of the following + *

Handler methods which are annotated with this annotation are allowed to + * have very flexible signatures. They may have parameters of the following * types, in arbitrary order: *

* *

The following return types are supported for handler methods: *