com.borland.primetime.vfs
Class VFSException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--com.borland.primetime.vfs.VFSException
Direct Known Subclasses:
InvalidUrlException, ReadOnlyException

public class VFSException
extends java.io.IOException

The parent class of all VFS exceptions.

See Also:
Serialized Form

Constructor Summary
VFSException()
          Constructs a VFSException with null as its error detail message.
VFSException(java.lang.String description)
          Constructs a VFSException 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

VFSException

public VFSException()
Constructs a VFSException with null as its error detail message.

VFSException

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