Home / Function/ exceptionCaught() — netty Function Reference

exceptionCaught() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  1a910208_f4ad_b93a_e087_95b71c6a6dea["exceptionCaught()"]
  5d9bf869_26ee_1468_df42_d7b387c194da["MessageForwarder3"]
  1a910208_f4ad_b93a_e087_95b71c6a6dea -->|defined in| 5d9bf869_26ee_1468_df42_d7b387c194da
  fa42f72d_994c_3545_03ab_d1f9b8b741e9["exceptionCaught()"]
  1a910208_f4ad_b93a_e087_95b71c6a6dea -->|calls| fa42f72d_994c_3545_03ab_d1f9b8b741e9
  style 1a910208_f4ad_b93a_e087_95b71c6a6dea fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport/src/test/java/io/netty/channel/local/LocalTransportThreadModelTest.java lines 560–566

        @Override
        public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
            exception.compareAndSet(null, cause);
            System.err.print('[' + Thread.currentThread().getName() + "] ");
            cause.printStackTrace();
            super.exceptionCaught(ctx, cause);
        }

Domain

Subdomains

Frequently Asked Questions

What does exceptionCaught() do?
exceptionCaught() is a function in the netty codebase, defined in transport/src/test/java/io/netty/channel/local/LocalTransportThreadModelTest.java.
Where is exceptionCaught() defined?
exceptionCaught() is defined in transport/src/test/java/io/netty/channel/local/LocalTransportThreadModelTest.java at line 560.
What does exceptionCaught() call?
exceptionCaught() calls 1 function(s): exceptionCaught.

Analyze Your Own Codebase

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

Try Supermodel Free