1
1
/*
2
- * Copyright 2002-2018 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -184,7 +184,7 @@ default void extendMessageConverters(List<HttpMessageConverter<?>> converters) {
184
184
* Configure exception resolvers.
185
185
* <p>The given list starts out empty. If it is left empty, the framework
186
186
* configures a default set of resolvers, see
187
- * {@link WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List)}.
187
+ * {@link WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List, org.springframework.web.accept.ContentNegotiationManager )}.
188
188
* Or if any exception resolvers are added to the list, then the application
189
189
* effectively takes over and must provide, fully initialized, exception
190
190
* resolvers.
@@ -193,7 +193,7 @@ default void extendMessageConverters(List<HttpMessageConverter<?>> converters) {
193
193
* or modify the list of exception resolvers configured by default.
194
194
* @param resolvers initially an empty list
195
195
* @see #extendHandlerExceptionResolvers(List)
196
- * @see WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List)
196
+ * @see WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List, org.springframework.web.accept.ContentNegotiationManager )
197
197
*/
198
198
default void configureHandlerExceptionResolvers (List <HandlerExceptionResolver > resolvers ) {
199
199
}
@@ -204,7 +204,7 @@ default void configureHandlerExceptionResolvers(List<HandlerExceptionResolver> r
204
204
* interfering with default ones.
205
205
* @param resolvers the list of configured resolvers to extend
206
206
* @since 4.3
207
- * @see WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List)
207
+ * @see WebMvcConfigurationSupport#addDefaultHandlerExceptionResolvers(List, org.springframework.web.accept.ContentNegotiationManager )
208
208
*/
209
209
default void extendHandlerExceptionResolvers (List <HandlerExceptionResolver > resolvers ) {
210
210
}
0 commit comments