HeaderListSizeException Class — netty Architecture
Architecture documentation for the HeaderListSizeException class in Http2Exception.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 47c633b9_ca15_662a_a7ae_ba81147f4e77["HeaderListSizeException"] 7dd7718e_f2a2_dc12_a584_d41785aa4a88["Http2Exception.java"] 47c633b9_ca15_662a_a7ae_ba81147f4e77 -->|defined in| 7dd7718e_f2a2_dc12_a584_d41785aa4a88 69cf4f76_d006_e6aa_c318_ce30cea345b6["HeaderListSizeException()"] 47c633b9_ca15_662a_a7ae_ba81147f4e77 -->|method| 69cf4f76_d006_e6aa_c318_ce30cea345b6 5744f474_83c6_ce39_ef64_5bfa64acf7d1["duringDecode()"] 47c633b9_ca15_662a_a7ae_ba81147f4e77 -->|method| 5744f474_83c6_ce39_ef64_5bfa64acf7d1
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Exception.java lines 277–290
public static final class HeaderListSizeException extends StreamException {
private static final long serialVersionUID = -8807603212183882637L;
private final boolean decode;
HeaderListSizeException(int streamId, Http2Error error, String message, boolean decode) {
super(streamId, error, message);
this.decode = decode;
}
public boolean duringDecode() {
return decode;
}
}
Source
Frequently Asked Questions
What is the HeaderListSizeException class?
HeaderListSizeException is a class in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Exception.java.
Where is HeaderListSizeException defined?
HeaderListSizeException is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Exception.java at line 277.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free