Class JweEncryptionException

All Implemented Interfaces:
Serializable

public class JweEncryptionException extends JweException
Represents an exception for when encryption of the JWE fails.
Since:
2.0.0
See Also:
  • Constructor Details

    • JweEncryptionException

      public JweEncryptionException(String message)
      Constructs a new JweEncryptionException with the provided exception message.
      Parameters:
      message - The exception message.
    • JweEncryptionException

      public JweEncryptionException(String message, Throwable throwable)
      Constructs a new JweEncryptionException with the provided exception message and underlying throwable.
      Parameters:
      message - The exception message.
      throwable - The underlying throwable.
    • JweEncryptionException

      public JweEncryptionException(Throwable throwable)
      Constructs a new JweEncryptionException with the provided underlying throwable.
      Parameters:
      throwable - The underlying throwable.