MCPcopy Create free account
hub / github.com/jwtk/jjwt / CompressionException

Class CompressionException

api/src/main/java/io/jsonwebtoken/CompressionException.java:25–46  ·  view source on GitHub ↗

Exception indicating that either compressing or decompressing a JWT body failed. @since 0.6.0

Source from the content-addressed store, hash-verified

23 * @since 0.6.0
24 */
25public class CompressionException extends IOException {
26
27 /**
28 * Creates a new instance with the specified explanation message.
29 *
30 * @param message the message explaining why the exception is thrown.
31 */
32 public CompressionException(String message) {
33 super(message);
34 }
35
36 /**
37 * Creates a new instance with the specified explanation message and underlying cause.
38 *
39 * @param message the message explaining why the exception is thrown.
40 * @param cause the underlying cause that resulted in this exception being thrown.
41 */
42 public CompressionException(String message, Throwable cause) {
43 super(message, cause);
44 }
45
46}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…