Consistent IOException spelling in class/method names

This commit is contained in:
Juergen Hoeller
2026-03-21 12:13:39 +01:00
parent 8b67472e35
commit 96a028a028
5 changed files with 6 additions and 6 deletions
@@ -172,7 +172,7 @@ class ExceptionHandlerExceptionResolverTests {
@Test
void resolveNoExceptionHandlerForException() throws NoSuchMethodException {
Exception npe = new NullPointerException();
HandlerMethod handlerMethod = new HandlerMethod(new IoExceptionController(), "handle");
HandlerMethod handlerMethod = new HandlerMethod(new IOExceptionController(), "handle");
this.resolver.afterPropertiesSet();
ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, npe);
@@ -540,7 +540,7 @@ class ExceptionHandlerExceptionResolverTests {
@Controller
static class IoExceptionController {
static class IOExceptionController {
public void handle() {}