FileDocCategorySizeDatePackage
SocketTimeoutException.javaAPI DocAndroid 1.5 API1706Wed May 06 22:41:04 BST 2009java.net

SocketTimeoutException

public class SocketTimeoutException extends InterruptedIOException
This exception is thrown when a timeout expired on a socket {@code read} or {@code accept} operation.
since
Android 1.0

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

since
Android 1.0


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

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

        super(detailMessage);
    
Methods Summary