You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This leads to an error if you want to handle BindException in your own exception handler.
Please remove the exception from the annotation or reintroduce the handling of it in Spring Framework 6.2.1.
Thank you!
The text was updated successfully, but these errors were encountered:
With a85bf31 the method
handleBindException
was removed inResponseEntityExceptionHandler
.But
BindException.class
wasn't removed from the@ExceptionHandler
annotation although the method doesn't handle the exception anymore.See https://github.com/spring-projects/spring-framework/blob/v6.2.0/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation/ResponseEntityExceptionHandler.java#L139
This leads to an error if you want to handle
BindException
in your own exception handler.Please remove the exception from the annotation or reintroduce the handling of it in Spring Framework 6.2.1.
Thank you!
The text was updated successfully, but these errors were encountered: