SocketException (Java SE 21 & JDK 21)
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BindException,ConnectException,NoRouteToHostException,PortUnreachableException
public class SocketException extends IOException
Thrown to indicate that there is an error creating or accessing a Socket.
- Since:
- 1.0
- See Also:
-
Constructor Summary
Constructors
Constructs a new
SocketExceptionwith no detail message.Constructs a new
SocketExceptionwith the specified detail message.Constructs a new
SocketExceptionwith the specified detail message and cause.Constructs a new
SocketExceptionwith the specified cause. -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SocketException
public SocketException
(String msg) Constructs a new
SocketExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
SocketException
public SocketException()
Constructs a new
SocketExceptionwith no detail message. -
SocketException
Constructs a new
SocketExceptionwith the specified detail message and cause.- Parameters:
msg- the detail message.cause- the cause- Since:
- 19
-
SocketException
public SocketException
(Throwable cause) Constructs a new
SocketExceptionwith the specified cause.- Parameters:
cause- the cause- Since:
- 19
-