Home / Class/ Http2NoMoreStreamIdsException Class — netty Architecture

Http2NoMoreStreamIdsException Class — netty Architecture

Architecture documentation for the Http2NoMoreStreamIdsException class in Http2NoMoreStreamIdsException.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  6dff2f9d_5138_f898_8481_ab1b947c584f["Http2NoMoreStreamIdsException"]
  f82007dc_80dd_90bd_ba9b_99d01de7821f["Http2NoMoreStreamIdsException.java"]
  6dff2f9d_5138_f898_8481_ab1b947c584f -->|defined in| f82007dc_80dd_90bd_ba9b_99d01de7821f
  6982a35d_c6e1_1170_6632_ea800fa1fdbf["Http2NoMoreStreamIdsException()"]
  6dff2f9d_5138_f898_8481_ab1b947c584f -->|method| 6982a35d_c6e1_1170_6632_ea800fa1fdbf

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2NoMoreStreamIdsException.java lines 22–33

public class Http2NoMoreStreamIdsException extends Http2Exception {
    private static final long serialVersionUID = -7756236161274851110L;
    private static final String ERROR_MESSAGE = "No more streams can be created on this connection";

    public Http2NoMoreStreamIdsException() {
        super(PROTOCOL_ERROR, ERROR_MESSAGE, ShutdownHint.GRACEFUL_SHUTDOWN);
    }

    public Http2NoMoreStreamIdsException(Throwable cause) {
        super(PROTOCOL_ERROR, ERROR_MESSAGE, cause, ShutdownHint.GRACEFUL_SHUTDOWN);
    }
}

Frequently Asked Questions

What is the Http2NoMoreStreamIdsException class?
Http2NoMoreStreamIdsException is a class in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2NoMoreStreamIdsException.java.
Where is Http2NoMoreStreamIdsException defined?
Http2NoMoreStreamIdsException is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2NoMoreStreamIdsException.java at line 22.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free