Class java.net.MalformedURLException
All Packages Class Hierarchy This Package Previous Next Index
Class java.net.MalformedURLException
Object
|
+----Throwable
|
+----Exception
|
+----IOException
|
+----java.net.MalformedURLException
- public class MalformedURLException
- extends IOException
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.
- Version:
- 1.9, 07/01/98
- Author:
- Arthur van Hoff
- Since:
- JDK1.0
-
java.net.MalformedURLException()
- Constructs a
MalformedURLException
with no detail message.
-
java.net.MalformedURLException(String)
- Constructs a
MalformedURLException
with the
specified detail message.
MalformedURLException
public MalformedURLException()
- Constructs a
MalformedURLException
with no detail message.
- Since:
- JDK1.0
MalformedURLException
public MalformedURLException(String msg)
- Constructs a
MalformedURLException
with the
specified detail message.
- Parameters:
- msg - the detail message.
- Since:
- JDK1.0
All Packages Class Hierarchy This Package Previous Next Index