MalformedURLExceptionpublic class MalformedURLException extends IOException This exception is thrown when a program attempts to create an URL from an
incorrect specification. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public MalformedURLException()Constructs a new instance of this class with its walkback filled in.
super();
| public MalformedURLException(String detailMessage)Constructs a new instance of this class with its walkback and message
filled in.
super(detailMessage);
|
|