SocketExceptionNameSocketExceptionSynopsis
DescriptionA SocketException is thrown when an error occurs while a socket is being used. As of JDK 1.1, there are some more specific subclasses of SocketException, namely BindException, ConnectException, and NoRouteToHostException. Class Summary
public class java.net.SocketException extends java.io.IOException { // Constructors public SocketException(); public SocketException(String msg); } ConstructorsSocketExceptionpublic SocketException()
public SocketException(String msg)
Inherited Methods
See AlsoBindException, ConnectException, Exception, IOException, NoRouteToHostException, RuntimeException |
|