Expresso 5-5-0

com.jcorporate.expresso.kernel.exception
Class ConfigChangeException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.jcorporate.expresso.kernel.exception.ChainedException
              extended bycom.jcorporate.expresso.kernel.exception.ExpressoRuntimeException
                  extended bycom.jcorporate.expresso.kernel.exception.ConfigChangeException
All Implemented Interfaces:
Serializable

public class ConfigChangeException
extends ExpressoRuntimeException

This exception represents an error that occurs when changing the configuration of an object. When a container catches a configuration change then it must roll back all of configuration changes that depend on it. This is the only way to keep the server running if a bad value is entered.

Version:
$Revision: 1.2 $ on $Date: 2003/05/10 08:07:22 $
Author:
Michael Rimov
See Also:
Serialized Form

Constructor Summary
ConfigChangeException()
          Default Constructor with no message
ConfigChangeException(String s)
          Constructor that stores a message with it
ConfigChangeException(String s, Throwable t)
          Constructor for throwing an exception that contains a message and another Throwable exception buried within it.
ConfigChangeException(Throwable t)
          Constructor for thowing a wrapped, nested Exception object
 
Methods inherited from class com.jcorporate.expresso.kernel.exception.ChainedException
getErrorNumber, getMessage, getNested, omitPackages, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConfigChangeException

public ConfigChangeException()
Default Constructor with no message


ConfigChangeException

public ConfigChangeException(String s)
Constructor that stores a message with it

Parameters:
s - The Exception message

ConfigChangeException

public ConfigChangeException(String s,
                             Throwable t)
Constructor for throwing an exception that contains a message and another Throwable exception buried within it. This allows for wrapping of varioua exceptions for uniform API.

Parameters:
s - The message String
t - java.lang.Throwable, presumably an exception you've already caught in another block of code.

ConfigChangeException

public ConfigChangeException(Throwable t)
Constructor for thowing a wrapped, nested Exception object

Parameters:
t - java.lang.Throwable, presumably an exception you've already caught in another block of code.

Expresso 5-5-0

Please see www.jcorporate.com for information about new Expresso releases.