com.digitalsanctuary.atg.crypto
Class EncryptorException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.digitalsanctuary.atg.crypto.EncryptorException
All Implemented Interfaces:
java.io.Serializable

public class EncryptorException
extends java.lang.Exception

This exception indicates that a severe error occurred while performing a cryptograpy operation.

See Also:
Serialized Form

Constructor Summary
EncryptorException()
          Constructs a new EncryptorException.
EncryptorException(java.lang.String pMessage)
          Constructs a new EncryptorException with the given explanation.
EncryptorException(java.lang.String pMessage, java.lang.Throwable pSourceException)
          Constructs a new EncryptorException with the given explanation.
EncryptorException(java.lang.Throwable pSourceException)
          Constructs a new EncryptorException.
 
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

EncryptorException

public EncryptorException()
Constructs a new EncryptorException.


EncryptorException

public EncryptorException(java.lang.String pMessage)
Constructs a new EncryptorException with the given explanation.

Parameters:
pMessage - the message for this exception.

EncryptorException

public EncryptorException(java.lang.Throwable pSourceException)
Constructs a new EncryptorException.

Parameters:
pSourceException - the initial exception which was the root cause of the problem

EncryptorException

public EncryptorException(java.lang.String pMessage,
                          java.lang.Throwable pSourceException)
Constructs a new EncryptorException with the given explanation.

Parameters:
pMessage - the message for this exception.
pSourceException - the initial exception which was the root cause of the problem