Class CryptoSignatureException

  • All Implemented Interfaces:
    java.io.Serializable , net.corda.v5.base.exceptions.CordaThrowable

    
    public final class CryptoSignatureException
    extends CryptoException
                        

    Signals that the signature verification has failed. The operation which caused the exception cannot be retried.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class net.corda.v5.crypto.exceptions.CryptoException

        isRecoverable
      • Methods inherited from class net.corda.v5.base.exceptions.CordaRuntimeException

        addSuppressed, equals, getCause, getMessage, getOriginalExceptionClassName, getOriginalMessage, hashCode, setCause, setMessage, setOriginalExceptionClassName
      • Methods inherited from class java.lang.Throwable

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

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CryptoSignatureException

        CryptoSignatureException(String message)
        Constructs a new exception with the specified detail message.
        Parameters:
        message - The detailed message.
      • CryptoSignatureException

        CryptoSignatureException(String message, Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        message - The detailed message.
        cause - The cause.
    • Method Detail