Home / Function/ exceptionCaught() — netty Function Reference

exceptionCaught() — netty Function Reference

Architecture documentation for the exceptionCaught() function in CombinedChannelDuplexHandler.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  34f36d79_45c9_b7bb_b5c2_abf59684bd19["exceptionCaught()"]
  d9e90966_2763_e0d8_7a2c_c3339937a5a7["CombinedChannelDuplexHandler"]
  34f36d79_45c9_b7bb_b5c2_abf59684bd19 -->|defined in| d9e90966_2763_e0d8_7a2c_c3339937a5a7
  3922501c_89d9_9315_87b2_3d95db47dd42["handlerAdded()"]
  3922501c_89d9_9315_87b2_3d95db47dd42 -->|calls| 34f36d79_45c9_b7bb_b5c2_abf59684bd19
  style 34f36d79_45c9_b7bb_b5c2_abf59684bd19 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport/src/main/java/io/netty/channel/CombinedChannelDuplexHandler.java lines 225–233

    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
        assert ctx == inboundCtx.ctx;
        if (!inboundCtx.removed) {
            inboundHandler.exceptionCaught(inboundCtx, cause);
        } else {
            inboundCtx.fireExceptionCaught(cause);
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does exceptionCaught() do?
exceptionCaught() is a function in the netty codebase, defined in transport/src/main/java/io/netty/channel/CombinedChannelDuplexHandler.java.
Where is exceptionCaught() defined?
exceptionCaught() is defined in transport/src/main/java/io/netty/channel/CombinedChannelDuplexHandler.java at line 225.
What calls exceptionCaught()?
exceptionCaught() is called by 1 function(s): handlerAdded.

Analyze Your Own Codebase

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

Try Supermodel Free