org.opencms.main
Class CmsIllegalStateException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.opencms.main.CmsRuntimeException
                  extended by org.opencms.main.CmsIllegalStateException
All Implemented Interfaces:
java.io.Serializable, I_CmsThrowable

public class CmsIllegalStateException
extends CmsRuntimeException

A replacement for IllegalStateException to obtain fully localized exception messages for OpenCms.

Please note that this class does not extend IllegalStateException due to the lack of multiple inheritance for Java.

Since:
6.0.0
Version:
$Revision: 1.11 $
Author:
Michael Moossen
See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.opencms.main.CmsRuntimeException
m_message
 
Constructor Summary
CmsIllegalStateException(CmsMessageContainer container)
          Creates a new localized Exception.
CmsIllegalStateException(CmsMessageContainer container, java.lang.Throwable cause)
          Creates a new localized Exception that also containes a root cause.
 
Method Summary
 CmsRuntimeException createException(CmsMessageContainer container, java.lang.Throwable cause)
          Creates a copied instance of this localized exception.
 
Methods inherited from class org.opencms.main.CmsRuntimeException
getLocalizedMessage, getLocalizedMessage, getMessage, getMessageContainer
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CmsIllegalStateException

public CmsIllegalStateException(CmsMessageContainer container)
Creates a new localized Exception.

Parameters:
container - the localized message container to use

CmsIllegalStateException

public CmsIllegalStateException(CmsMessageContainer container,
                                java.lang.Throwable cause)
Creates a new localized Exception that also containes a root cause.

Parameters:
container - the localized message container to use
cause - the Exception root cause
Method Detail

createException

public CmsRuntimeException createException(CmsMessageContainer container,
                                           java.lang.Throwable cause)
Description copied from class: CmsRuntimeException
Creates a copied instance of this localized exception.

Overrides:
createException in class CmsRuntimeException
Parameters:
container - the message container
cause - the root cause
Returns:
a copied instance of this localized exception
See Also:
CmsRuntimeException.createException(org.opencms.i18n.CmsMessageContainer, java.lang.Throwable)