Home / Class/ StacklessClosedChannelException Class — netty Architecture

StacklessClosedChannelException Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  3d765fd7_e704_363f_1910_a5f3cff49517["StacklessClosedChannelException"]
  63576111_116a_6d68_66bc_e376848ac712["StacklessClosedChannelException.java"]
  3d765fd7_e704_363f_1910_a5f3cff49517 -->|defined in| 63576111_116a_6d68_66bc_e376848ac712
  c04afcb0_8843_2a06_1102_4e42829b4931["StacklessClosedChannelException()"]
  3d765fd7_e704_363f_1910_a5f3cff49517 -->|method| c04afcb0_8843_2a06_1102_4e42829b4931
  6e0a631f_cffd_beb7_fc1d_0417d276dd11["Throwable()"]
  3d765fd7_e704_363f_1910_a5f3cff49517 -->|method| 6e0a631f_cffd_beb7_fc1d_0417d276dd11

Relationship Graph

Source Code

transport/src/main/java/io/netty/channel/StacklessClosedChannelException.java lines 25–43

final class StacklessClosedChannelException extends ClosedChannelException {

    private static final long serialVersionUID = -2214806025529435136L;

    private StacklessClosedChannelException() { }

    @Override
    public Throwable fillInStackTrace() {
        // Suppress a warning since this method doesn't need synchronization
        return this;
    }

    /**
     * Creates a new {@link StacklessClosedChannelException} which has the origin of the given {@link Class} and method.
     */
    static StacklessClosedChannelException newInstance(Class<?> clazz, String method) {
        return ThrowableUtil.unknownStackTrace(new StacklessClosedChannelException(), clazz, method);
    }
}

Frequently Asked Questions

What is the StacklessClosedChannelException class?
StacklessClosedChannelException is a class in the netty codebase, defined in transport/src/main/java/io/netty/channel/StacklessClosedChannelException.java.
Where is StacklessClosedChannelException defined?
StacklessClosedChannelException is defined in transport/src/main/java/io/netty/channel/StacklessClosedChannelException.java at line 25.

Analyze Your Own Codebase

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

Try Supermodel Free