Allow ProblemDetailsExceptionHandlers to be proxied

See gh-34503
This commit is contained in:
Volkan Yazıcı 2023-03-07 12:40:22 +01:00 committed by Andy Wilkinson
parent 91c5d41094
commit b96a8dd370
2 changed files with 2 additions and 2 deletions

View File

@ -26,6 +26,6 @@ import org.springframework.web.reactive.result.method.annotation.ResponseEntityE
* @author Brian Clozel
*/
@ControllerAdvice
final class ProblemDetailsExceptionHandler extends ResponseEntityExceptionHandler {
class ProblemDetailsExceptionHandler extends ResponseEntityExceptionHandler {
}

View File

@ -26,6 +26,6 @@ import org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExcep
* @author Brian Clozel
*/
@ControllerAdvice
final class ProblemDetailsExceptionHandler extends ResponseEntityExceptionHandler {
class ProblemDetailsExceptionHandler extends ResponseEntityExceptionHandler {
}