sofya.base.exceptions
Class ConfigurationError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by sofya.base.exceptions.SofyaError
              extended by sofya.base.exceptions.ConfigurationError
All Implemented Interfaces:
java.io.Serializable

public class ConfigurationError
extends SofyaError

Error which indicates some inconsistency in the compile-time configuration of the Sofya system.

Version:
09/23/2004
Author:
Alex Kinneer
See Also:
Serialized Form

Constructor Summary
ConfigurationError()
          Creates a new error indicating a configuration problem.
ConfigurationError(java.lang.String msg)
          Creates a new error indicating a configuration problem with a message.
ConfigurationError(java.lang.String msg, java.lang.Throwable cause)
          Creates a new error indicating a configuration problem with a message and encapsulating an original cause for failure.
 
Method Summary
 
Methods inherited from class sofya.base.exceptions.SofyaError
getCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, 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
 

Constructor Detail

ConfigurationError

public ConfigurationError()
Creates a new error indicating a configuration problem.


ConfigurationError

public ConfigurationError(java.lang.String msg)
Creates a new error indicating a configuration problem with a message.

Parameters:
msg - Message describing the nature of the configuration error.

ConfigurationError

public ConfigurationError(java.lang.String msg,
                          java.lang.Throwable cause)
Creates a new error indicating a configuration problem with a message and encapsulating an original cause for failure.

Parameters:
msg - Message describing the nature of the configuration error.
cause - Exception which indicated the configuration error.