Class CryptographyException

  • All Implemented Interfaces:
    java.io.Serializable

    public class CryptographyException
    extends java.lang.Exception
    An exception that indicates that something has gone wrong during a cryptography operation.
    Version:
    $Revision: 1.4 $
    Author:
    Ben Litchfield
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Exception getEmbedded()
      This will get the exception that caused this exception.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • CryptographyException

        public CryptographyException​(java.lang.String msg)
        Constructor.
        Parameters:
        msg - A msg to go with this exception.
      • CryptographyException

        public CryptographyException​(java.lang.Exception e)
        Constructor.
        Parameters:
        e - The root exception that caused this exception.
    • Method Detail

      • getEmbedded

        public java.lang.Exception getEmbedded()
        This will get the exception that caused this exception.
        Returns:
        The embedded exception if one exists.