Home / Class/ StacklessSpdyProtocolException Class — netty Architecture

StacklessSpdyProtocolException Class — netty Architecture

Architecture documentation for the StacklessSpdyProtocolException class in SpdyProtocolException.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  5b459c54_3bcf_c71e_bb5f_2efb46f5577c["StacklessSpdyProtocolException"]
  3c08e093_ec48_72b4_c816_95c328e424ad["SpdyProtocolException.java"]
  5b459c54_3bcf_c71e_bb5f_2efb46f5577c -->|defined in| 3c08e093_ec48_72b4_c816_95c328e424ad
  897a4685_ecc3_944b_7e4a_c3a377c6fb67["StacklessSpdyProtocolException()"]
  5b459c54_3bcf_c71e_bb5f_2efb46f5577c -->|method| 897a4685_ecc3_944b_7e4a_c3a377c6fb67
  6905ae45_8a8a_c467_38e3_47a14bf49eb6["Throwable()"]
  5b459c54_3bcf_c71e_bb5f_2efb46f5577c -->|method| 6905ae45_8a8a_c467_38e3_47a14bf49eb6

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyProtocolException.java lines 60–73

    private static final class StacklessSpdyProtocolException extends SpdyProtocolException {
        private static final long serialVersionUID = -6302754207557485099L;

        StacklessSpdyProtocolException(String message, boolean shared) {
            super(message, 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 StacklessSpdyProtocolException class?
StacklessSpdyProtocolException is a class in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyProtocolException.java.
Where is StacklessSpdyProtocolException defined?
StacklessSpdyProtocolException is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyProtocolException.java at line 60.

Analyze Your Own Codebase

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

Try Supermodel Free