Exception indicating that either compressing or decompressing a JWT body failed. @since 0.6.0
| 23 | * @since 0.6.0 |
| 24 | */ |
| 25 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…