Class JweException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
JweCompressionException, JweDecryptionException, JweEncryptionException

public class JweException extends JwtRuntimeException
Represents a generic exception for JWE operations.
Since:
2.0.0
See Also:
  • Constructor Details

    • JweException

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

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

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