edu.sdsc.inca.util
Class CrypterException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byedu.sdsc.inca.util.CrypterException
All Implemented Interfaces:
java.io.Serializable

public class CrypterException
extends java.lang.Exception

Indicates that some configuration problem has occured within Inca.

See Also:
Serialized Form

Constructor Summary
CrypterException()
          Default constructor.
CrypterException(java.lang.String s)
          Create a configuration exception with the given message.
CrypterException(java.lang.String s, java.lang.Throwable throwable)
          Add a message to the Exception and a cause.
CrypterException(java.lang.Throwable throwable)
          Add just a cause to the exception.
 
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

CrypterException

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


CrypterException

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

Parameters:
s - Message

CrypterException

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

Parameters:
s - message
throwable - cause

CrypterException

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

Parameters:
throwable - cause