FileDocCategorySizeDatePackage
ProtocolException.javaAPI DocAndroid 1.5 API1696Wed May 06 22:41:04 BST 2009java.net

ProtocolException

public class ProtocolException extends IOException
Signals that either a connection attempt to a socket of the wrong type, the application of an unsupported operation or that a general error in the underlying protocol has occurred.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public ProtocolException()
Constructs a new instance of this class with its walkback filled in.

since
Android 1.0


                         
      
        super();
    
public ProtocolException(String detailMessage)
Constructs a new instance of this class with its walkback and message filled in.

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

        super(detailMessage);
    
Methods Summary