mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8299475: Enhance SocketException by cause where it is missing in net and nio area
Reviewed-by: alanb
This commit is contained in:
parent
2ccdefc81c
commit
c929d8be5d
4 changed files with 25 additions and 8 deletions
|
@ -531,8 +531,10 @@ public class Socket implements java.io.Closeable {
|
|||
try {
|
||||
impl.create(stream);
|
||||
created = true;
|
||||
} catch (SocketException e) {
|
||||
throw e;
|
||||
} catch (IOException e) {
|
||||
throw new SocketException(e.getMessage());
|
||||
throw new SocketException(e.getMessage(), e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue