Replace use of Spring NestedIOException with IOException
Basics
Logistics
Basics
Logistics
Description
In Spring Framework 6.0.0-M4, the NestedIOException class is removed as redundant (although there was no deprecation warning in 5.x releases to date).
The commit comment is:
Remove obsolete org.springframework.core.NestedIOException This commit removes Spring's custom NestedIOException and replaces its usage with the standard IOException which has supported a root cause since Java 6.
We need to do the same in order to port forward to Spring Framework 6.
I’ll do this on the development branch; we can cherry-pick back onto main if we feel we need it earlier than that.
In Spring Framework 6.0.0-M4, the
NestedIOException
class is removed as redundant (although there was no deprecation warning in 5.x releases to date).The commit comment is:
We need to do the same in order to port forward to Spring Framework 6.
I’ll do this on the development branch; we can cherry-pick back onto main if we feel we need it earlier than that.