Java in a Nutshell

Previous Chapter 28
The java.net Package
Next
 

28.11 java.net.MalformedURLException (JDK 1.0)

Signals that an unparseable URL specification has been passed to a method.


public class MalformedURLException extends IOException {

    // Public Constructors

            public MalformedURLException();

            public MalformedURLException(String msg);

}

Hierarchy:

Object->Throwable(Serializable)->Exception->IOException->MalformedURLException

Thrown By:

URL()


Previous Home Next
java.net.InetAddress (JDK 1.0) Book Index java.net.MulticastSocket (JDK 1.1)

Java in a Nutshell Java Language Reference Java AWT Java Fundamental Classes Exploring Java