atg.vfs
Class VirtualFileSystemException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by atg.vfs.VirtualFileSystemException
All Implemented Interfaces:
java.io.Serializable

public class VirtualFileSystemException
extends java.lang.Exception

This is the base exception class for all virtual file system exceptions.

See Also:
Serialized Form

Field Summary
static java.lang.String CLASS_VERSION
          Class version string
 
Constructor Summary
VirtualFileSystemException()
          Constructs an instanceof VirtualFileSystemException
VirtualFileSystemException(java.lang.String pMsg)
          Constructs an instanceof VirtualFileSystemException
VirtualFileSystemException(java.lang.String pMsg, java.lang.Throwable pSource)
          Constructs an instanceof VirtualFileSystemException
VirtualFileSystemException(java.lang.Throwable pSource)
          Constructs an instanceof VirtualFileSystemException
 
Method Summary
 java.lang.Throwable getSource()
          Returns property Source
 void printStackTrace()
          Print our stack trace and that of the source exception if there is one.
 void printStackTrace(java.io.PrintStream pStream)
          Print our stack trace and that of the source exception if there is one.
 void printStackTrace(java.io.PrintWriter pWriter)
          Print our stack trace and that of the source exception if there is one.
 void setSource(java.lang.Throwable pSource)
          Sets property Source
 java.lang.String toString()
          Display information about this exception
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static java.lang.String CLASS_VERSION
Class version string

Constructor Detail

VirtualFileSystemException

public VirtualFileSystemException()
Constructs an instanceof VirtualFileSystemException


VirtualFileSystemException

public VirtualFileSystemException(java.lang.String pMsg)
Constructs an instanceof VirtualFileSystemException


VirtualFileSystemException

public VirtualFileSystemException(java.lang.Throwable pSource)
Constructs an instanceof VirtualFileSystemException


VirtualFileSystemException

public VirtualFileSystemException(java.lang.String pMsg,
                                  java.lang.Throwable pSource)
Constructs an instanceof VirtualFileSystemException

Method Detail

setSource

public void setSource(java.lang.Throwable pSource)
Sets property Source


getSource

public java.lang.Throwable getSource()
Returns property Source


printStackTrace

public void printStackTrace()
Print our stack trace and that of the source exception if there is one. Print to the standard error stream.

Overrides:
printStackTrace in class java.lang.Throwable

printStackTrace

public void printStackTrace(java.io.PrintStream pStream)
Print our stack trace and that of the source exception if there is one. Print to the supplied stream.

Overrides:
printStackTrace in class java.lang.Throwable
Parameters:
pStream - Stream to print to

printStackTrace

public void printStackTrace(java.io.PrintWriter pWriter)
Print our stack trace and that of the source exception if there is one. Print to the supplied writer

Overrides:
printStackTrace in class java.lang.Throwable
Parameters:
pWriter - Writer to print to

toString

public java.lang.String toString()
Display information about this exception

Overrides:
toString in class java.lang.Throwable