Class Http3Exception

java.lang.Object
java.lang.Throwable
java.lang.Exception
io.netty.handler.codec.http3.Http3Exception
All Implemented Interfaces:
Serializable

public final class Http3Exception extends Exception
An exception related to violate the HTTP3 spec.
See Also:
  • Constructor Details

    • Http3Exception

      public Http3Exception(Http3ErrorCode errorCode, @Nullable @Nullable String message)
      Create a new instance.
      Parameters:
      errorCode - the Http3ErrorCode that caused this exception.
      message - the message to include.
    • Http3Exception

      public Http3Exception(Http3ErrorCode errorCode, String message, @Nullable @Nullable Throwable cause)
      Create a new instance.
      Parameters:
      errorCode - the Http3ErrorCode that caused this exception.
      message - the message to include.
      cause - the Throwable to wrap.
  • Method Details