FileDocCategorySizeDatePackage
UnknownServiceException.javaAPI DocAndroid 1.5 API1847Wed May 06 22:41:04 BST 2009java.net

UnknownServiceException

public class UnknownServiceException extends IOException
Is thrown if no appropriate {@code ContentHandler} could be found for a particular service requested by the URL connection. This could be happened if there is an invalid MIME type or the application wants to send data over a read-only connection.
since
Android 1.0

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

since
Android 1.0


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

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

        super(detailMessage);
    
Methods Summary