Home / Class/ StacklessHttp2Exception Class — netty Architecture

StacklessHttp2Exception Class — netty Architecture

Architecture documentation for the StacklessHttp2Exception class in Http2Exception.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  871ba239_b398_ebc0_0941_207541b87c98["StacklessHttp2Exception"]
  7dd7718e_f2a2_dc12_a584_d41785aa4a88["Http2Exception.java"]
  871ba239_b398_ebc0_0941_207541b87c98 -->|defined in| 7dd7718e_f2a2_dc12_a584_d41785aa4a88
  c1b857df_cdd3_3da5_4ad2_c5e2e9a5aa49["StacklessHttp2Exception()"]
  871ba239_b398_ebc0_0941_207541b87c98 -->|method| c1b857df_cdd3_3da5_4ad2_c5e2e9a5aa49
  3f30d530_5415_adf8_fb0f_6f32a2cab4b1["Throwable()"]
  871ba239_b398_ebc0_0941_207541b87c98 -->|method| 3f30d530_5415_adf8_fb0f_6f32a2cab4b1

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Exception.java lines 314–332

    private static final class StacklessHttp2Exception extends Http2Exception {

        private static final long serialVersionUID = 1077888485687219443L;

        StacklessHttp2Exception(Http2Error error, String message, ShutdownHint shutdownHint) {
            super(error, message, shutdownHint);
        }

        StacklessHttp2Exception(Http2Error error, String message, ShutdownHint shutdownHint, boolean shared) {
            super(error, message, shutdownHint, shared);
        }

        // Override fillInStackTrace() so we not populate the backtrace via a native call and so leak the
        // Classloader.
        @Override
        public Throwable fillInStackTrace() {
            return this;
        }
    }

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free