Package org.eclipse.jetty.http3.qpack
Class QpackException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.jetty.http3.qpack.QpackException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
QpackException.SessionException
,QpackException.StreamException
public abstract class QpackException extends java.lang.Exception
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
QpackException.SessionException
A Session QPACK Exception.static class
QpackException.StreamException
A Stream QPACK exception.
-
Field Summary
Fields Modifier and Type Field Description static long
H3_GENERAL_PROTOCOL_ERROR
static long
QPACK_DECODER_STREAM_ERROR
static long
QPACK_DECOMPRESSION_FAILED
static long
QPACK_ENCODER_STREAM_ERROR
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getErrorCode()
-
-
-
Field Detail
-
QPACK_DECOMPRESSION_FAILED
public static final long QPACK_DECOMPRESSION_FAILED
- See Also:
- Constant Field Values
-
QPACK_ENCODER_STREAM_ERROR
public static final long QPACK_ENCODER_STREAM_ERROR
- See Also:
- Constant Field Values
-
QPACK_DECODER_STREAM_ERROR
public static final long QPACK_DECODER_STREAM_ERROR
- See Also:
- Constant Field Values
-
H3_GENERAL_PROTOCOL_ERROR
public static final long H3_GENERAL_PROTOCOL_ERROR
- See Also:
- Constant Field Values
-
-