FileDocCategorySizeDatePackage
MalformedURLException.javaAPI DocAndroid 1.5 API1664Wed May 06 22:41:04 BST 2009java.net

MalformedURLException

public class MalformedURLException extends IOException
This exception is thrown when a program attempts to create an URL from an incorrect specification.
see
URL
since
Android 1.0

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

since
Android 1.0


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

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

        super(detailMessage);
    
Methods Summary