com.stellent.cis.common.exception
Class BaseRuntimeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.stellent.cis.common.exception.BaseRuntimeException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
CommandConfigurationException, CommandRuntimeException, CommonSearchParseException, CreateAPIObjectException, EJBConnectionException, PropertyRetrievalException, PropertySetException

public class BaseRuntimeException
extends java.lang.RuntimeException

Base class for runtime exceptions in the system.

See Also:
Serialized Form

Field Summary
protected  boolean m_isWrapper
           
 
Constructor Summary
BaseRuntimeException()
           
BaseRuntimeException(java.lang.String message)
           
BaseRuntimeException(java.lang.String message, java.lang.Throwable cause)
           
BaseRuntimeException(java.lang.Throwable cause)
           
 
Method Summary
 boolean isWrapper()
          Determines if this exception just holds another exception and provides no more contextual information.
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

m_isWrapper

protected boolean m_isWrapper
Constructor Detail

BaseRuntimeException

public BaseRuntimeException()

BaseRuntimeException

public BaseRuntimeException(java.lang.String message)

BaseRuntimeException

public BaseRuntimeException(java.lang.String message,
                            java.lang.Throwable cause)

BaseRuntimeException

public BaseRuntimeException(java.lang.Throwable cause)
Method Detail

isWrapper

public boolean isWrapper()
Determines if this exception just holds another exception and provides no more contextual information. Useful for displaying error messages without the command stack trace; i.e.

Returns: