FileDocCategorySizeDatePackage
SocketException.javaAPI DocAndroid 1.5 API1701Wed May 06 22:41:04 BST 2009java.net

SocketException

public class SocketException extends IOException
This {@code SocketException} may be thrown during socket creation or setting options, and is the superclass of all other socket related exceptions.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public SocketException()
Constructs a new {@code SocketException} instance with its walkback filled in.

since
Android 1.0


                        
      
        super();
    
public SocketException(String detailMessage)
Constructs a new {@code SocketException} instance with its walkback and message filled in.

param
detailMessage the detail message of this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary