Home / Class/ StacklessChannelException Class — netty Architecture

StacklessChannelException Class — netty Architecture

Architecture documentation for the StacklessChannelException class in ChannelException.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  48c6d428_43d4_41a5_cd40_2036dc987516["StacklessChannelException"]
  cf4424c7_eb95_881a_d8dc_5d3187ead1bb["ChannelException.java"]
  48c6d428_43d4_41a5_cd40_2036dc987516 -->|defined in| cf4424c7_eb95_881a_d8dc_5d3187ead1bb
  40c1db33_c21f_3c2f_3816_7f2085a2e726["StacklessChannelException()"]
  48c6d428_43d4_41a5_cd40_2036dc987516 -->|method| 40c1db33_c21f_3c2f_3816_7f2085a2e726
  36bd832c_5301_a27c_2c64_016c59a73797["Throwable()"]
  48c6d428_43d4_41a5_cd40_2036dc987516 -->|method| 36bd832c_5301_a27c_2c64_016c59a73797

Relationship Graph

Source Code

transport/src/main/java/io/netty/channel/ChannelException.java lines 65–79

    private static final class StacklessChannelException extends ChannelException {
        private static final long serialVersionUID = -6384642137753538579L;

        StacklessChannelException(String message, Throwable cause, boolean shared) {
            super(message, cause, 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 StacklessChannelException class?
StacklessChannelException is a class in the netty codebase, defined in transport/src/main/java/io/netty/channel/ChannelException.java.
Where is StacklessChannelException defined?
StacklessChannelException is defined in transport/src/main/java/io/netty/channel/ChannelException.java at line 65.

Analyze Your Own Codebase

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

Try Supermodel Free