java.net.MalformedURLException
java.io.IOException
None
None
JDK 1.0 or later
A MalformedURLException is thrown when a malformed URL is encountered, which can occur if a URL does not contain a valid protocol or if the string is unparsable.
public class java.net.MalformedURLException extends java.io.IOException {
// Constructors
public MalformedURLException();
public MalformedURLException(String msg);
}
This constructor creates a MalformedURLException with no associated detail message.
The detail message.
This constructor creates a MalformedURLException with the specified detail message.
|
Method |
Inherited From |
Method |
Inherited From |
|---|---|---|---|
|
clone() |
Object |
equals(Object) |
Object |
|
fillInStackTrace() |
Throwable |
finalize() |
Object |
|
getClass() |
Object |
getLocalizedMessage() |
Throwable |
|
getMessage() |
Throwable |
hashCode() |
Object |
|
notify() |
Object |
notifyAll() |
Object |
|
printStackTrace() |
Throwable |
printStackTrace(PrintStream) |
Throwable |
|
printStackTrace(PrintWriter) |
Throwable |
toString() |
Throwable |
|
wait() |
Object |
wait(long) |
Object |
|
wait(long, int) |
Object |
Exception, IOException, RuntimeException