com.softwareag.centrasite.appl.framework
Class CSAppFrameworkException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.softwareag.centrasite.appl.framework.CSAppFrameworkException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
CacheNotAvailableException, CSAppFrameworkParserException, ManagerException, MappingException

public class CSAppFrameworkException
extends java.lang.Exception

The frameworks base exception class. More specialized exceptions are derived from it.

See Also:
Serialized Form

Constructor Summary
CSAppFrameworkException(java.lang.String pMessage)
          Creates a new instance with the given detail message and no cause.
CSAppFrameworkException(java.lang.String pMessage, java.lang.Throwable pCause)
          Creates a new instance with the given detail message and cause.
CSAppFrameworkException(java.lang.Throwable pCause)
          Creates a new instance with the given cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CSAppFrameworkException

public CSAppFrameworkException(java.lang.String pMessage,
                               java.lang.Throwable pCause)
Creates a new instance with the given detail message and cause.

Parameters:
pMessage - The detail message.
pCause - The exceptions cause.

CSAppFrameworkException

public CSAppFrameworkException(java.lang.String pMessage)
Creates a new instance with the given detail message and no cause.

Parameters:
pMessage - The detail message.

CSAppFrameworkException

public CSAppFrameworkException(java.lang.Throwable pCause)
Creates a new instance with the given cause. The detail message is obtained by invoking Throwable.getMessage() on the cause.