edu.sdsc.inca
Class ConfigurationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by edu.sdsc.inca.ConfigurationException
All Implemented Interfaces:
java.io.Serializable

public class ConfigurationException
extends java.lang.Exception

Indicates that some configuration problem has occured within Inca.

See Also:
Serialized Form

Constructor Summary
ConfigurationException()
          Default constructor.
ConfigurationException(java.lang.String s)
          Create a configuration exception with the given message.
ConfigurationException(java.lang.String s, java.lang.Throwable throwable)
          Add a message to the Exception and a cause.
ConfigurationException(java.lang.Throwable throwable)
          Add just a cause to the exception.
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConfigurationException

public ConfigurationException()
Default constructor. No message no cause. Using this is not recomended.


ConfigurationException

public ConfigurationException(java.lang.String s)
Create a configuration exception with the given message.

Parameters:
s - Message

ConfigurationException

public ConfigurationException(java.lang.String s,
                              java.lang.Throwable throwable)
Add a message to the Exception and a cause.

Parameters:
s - message
throwable - cause

ConfigurationException

public ConfigurationException(java.lang.Throwable throwable)
Add just a cause to the exception.

Parameters:
throwable - cause