Class JweCompressionException

All Implemented Interfaces:
Serializable

public class JweCompressionException extends JweException
Represents an exception for when compression/decompression of the plaintext fails.
Since:
2.0.0
See Also:
  • Constructor Details

    • JweCompressionException

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

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

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