Class JsonCryptoException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.json.crypto.JsonCryptoException
All Implemented Interfaces:
Serializable

public class JsonCryptoException extends Exception
An exception that is thrown during JSON cryptographic operations.
See Also:
  • Constructor Details

    • JsonCryptoException

      public JsonCryptoException()
      Constructs a new exception with null as its detail message.
    • JsonCryptoException

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

      public JsonCryptoException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - The cause.
    • JsonCryptoException

      public JsonCryptoException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - The message.
      cause - The cause.