Skip to content

Commit 66eddf9

Browse files
committed
Include original exception if cause is null
Closes gh-33080 See gh-32952
1 parent e94ec80 commit 66eddf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-web/src/main/java/org/springframework/http/client/ReactorNettyClientRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ static IOException convertException(RuntimeException ex) {
140140
return ioEx;
141141
}
142142
}
143-
return new IOException(ex.getMessage(), cause);
143+
return new IOException(ex.getMessage(), (cause != null ? cause : ex));
144144
}
145145

146146

0 commit comments

Comments
 (0)