public class

MalformedURLException

extends IOException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.net.MalformedURLException

Class Overview

This exception is thrown when a program attempts to create an URL from an incorrect specification.

See Also

Summary

Public Constructors
MalformedURLException()
Constructs a new instance of this class with its walkback filled in.
MalformedURLException(String detailMessage)
Constructs a new instance of this class with its walkback and message filled in.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public MalformedURLException ()

Constructs a new instance of this class with its walkback filled in.

public MalformedURLException (String detailMessage)

Constructs a new instance of this class with its walkback and message filled in.

Parameters
detailMessage the detail message for this exception instance.