java.net
Class MalformedURLException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--java.net.MalformedURLException
All Implemented Interfaces:
Serializable

public class MalformedURLException
extends IOException

Untamed: Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a specification string or the string could not be parsed.

Since:
JDK1.0
Version:
1.14, 12/03/01
Author:
Arthur van Hoff
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
MalformedURLException()
          Enabled: Constructs a MalformedURLException with no detail message.
MalformedURLException(String msg)
          Enabled: Constructs a MalformedURLException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MalformedURLException

public MalformedURLException()
Enabled: Constructs a MalformedURLException with no detail message.


MalformedURLException

public MalformedURLException(String msg)
Enabled: Constructs a MalformedURLException with the specified detail message.

Parameters:
msg - the detail message.


comments?