Uses of Class
io.netty.handler.codec.quic.QuicTransportError
Packages that use QuicTransportError
-
Uses of QuicTransportError in io.netty.handler.codec.quic
Fields in io.netty.handler.codec.quic declared as QuicTransportErrorModifier and TypeFieldDescriptionstatic final QuicTransportErrorQuicTransportError.AEAD_LIMIT_REACHEDAn endpoint has reached the confidentiality or integrity limit for the AEAD algorithm used by the given connection.static final QuicTransportErrorQuicTransportError.APPLICATION_ERRORThe application or application protocol caused the connection to be closed.static final QuicTransportErrorQuicTransportError.CONNECTION_ID_LIMIT_ERRORThe number of connection IDs provided by the peer exceeds the advertised active_connection_id_limit.static final QuicTransportErrorQuicTransportError.CONNECTION_REFUSEDThe server refused to accept a new connection.static final QuicTransportErrorQuicTransportError.CRYPTO_BUFFER_EXCEEDEDAn endpoint has received more data in CRYPTO frames than it can buffer.static final QuicTransportErrorQuicTransportError.FINAL_SIZE_ERROR(1) An endpoint received a STREAM frame containing data that exceeded the previously established final size, (2) an endpoint received a STREAM frame or a RESET_STREAM frame containing a final size that was lower than the size of stream data that was already received, or (3) an endpoint received a STREAM frame or a RESET_STREAM frame containing a different final size to the one already established.static final QuicTransportErrorQuicTransportError.FLOW_CONTROL_ERRORAn endpoint received more data than it permitted in its advertised data limits.static final QuicTransportErrorQuicTransportError.FRAME_ENCODING_ERRORAn endpoint received a frame that was badly formatted -- for instance, a frame of an unknown type or an ACK frame that has more acknowledgment ranges than the remainder of the packet could carry.static final QuicTransportErrorQuicTransportError.INTERNAL_ERRORThe endpoint encountered an internal error and cannot continue with the connection.static final QuicTransportErrorQuicTransportError.INVALID_TOKENA server received a client Initial that contained an invalid Token field.static final QuicTransportErrorQuicTransportError.KEY_UPDATE_ERRORAn endpoint detected errors in performing key updates.static final QuicTransportErrorQuicTransportError.NO_ERRORAn endpoint uses this with CONNECTION_CLOSE to signal that the connection is being closed abruptly in the absence of any error.static final QuicTransportErrorQuicTransportError.NO_VIABLE_PATHn endpoint has determined that the network path is incapable of supporting QUIC.static final QuicTransportErrorQuicTransportError.PROTOCOL_VIOLATIONAn endpoint detected an error with protocol compliance that was not covered by more specific error codes.static final QuicTransportErrorQuicTransportError.STREAM_LIMIT_ERRORAn endpoint received a frame for a stream identifier that exceeded its advertised stream limit for the corresponding stream type.static final QuicTransportErrorQuicTransportError.STREAM_STATE_ERRORAn endpoint received a frame for a stream that was not in a state that permitted that frame.static final QuicTransportErrorQuicTransportError.TRANSPORT_PARAMETER_ERRORAn endpoint received transport parameters that were badly formatted, included an invalid value, omitted a mandatory transport parameter, included a forbidden transport parameter, or were otherwise in error.Methods in io.netty.handler.codec.quic that return QuicTransportErrorModifier and TypeMethodDescription@Nullable QuicTransportErrorQuicException.error()Returns theQuicTransportErrorwhich was the cause of theQuicException.static QuicTransportErrorQuicTransportError.valueOf(long value) Constructors in io.netty.handler.codec.quic with parameters of type QuicTransportErrorModifierConstructorDescriptionQuicException(QuicTransportError error) QuicException(String message, QuicTransportError error) QuicException(String message, Throwable cause, QuicTransportError error) QuicException(Throwable cause, QuicTransportError error)