com.borland.primetime.vfs
Class InvalidUrlException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--com.borland.primetime.vfs.VFSException
                          |
                          +--com.borland.primetime.vfs.InvalidUrlException

public class InvalidUrlException
extends VFSException

Signals that an attempt was made to construct a Url with an invalid format.

See Also:
Serialized Form

Constructor Summary
InvalidUrlException()
          Constructs an InvalidUrlException with null as its error detail message.
InvalidUrlException(java.lang.String description)
          Constructs an InvalidUrlException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidUrlException

public InvalidUrlException()
Constructs an InvalidUrlException with null as its error detail message.

InvalidUrlException

public InvalidUrlException(java.lang.String description)
Constructs an InvalidUrlException with the specified detail message. The string description can be retrieved later by the Throwable.getMessage() method of class java.lang.Throwable.
Parameters:
s - the detail message.