Home / Function/ exceptionCaught() — netty Function Reference

exceptionCaught() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  499a8c9f_7814_300b_956d_2810cc0d0209["exceptionCaught()"]
  1fb79984_fd8e_cecc_3934_20ed3529f561["SpdySessionHandler"]
  499a8c9f_7814_300b_956d_2810cc0d0209 -->|defined in| 1fb79984_fd8e_cecc_3934_20ed3529f561
  d9e20c4c_0d4b_8b85_52cd_ff50b2c773f1["issueSessionError()"]
  499a8c9f_7814_300b_956d_2810cc0d0209 -->|calls| d9e20c4c_0d4b_8b85_52cd_ff50b2c773f1
  style 499a8c9f_7814_300b_956d_2810cc0d0209 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java lines 421–428

    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
        if (cause instanceof SpdyProtocolException) {
            issueSessionError(ctx, SpdySessionStatus.PROTOCOL_ERROR);
        }

        ctx.fireExceptionCaught(cause);
    }

Domain

Subdomains

Frequently Asked Questions

What does exceptionCaught() do?
exceptionCaught() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java.
Where is exceptionCaught() defined?
exceptionCaught() is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java at line 421.
What does exceptionCaught() call?
exceptionCaught() calls 1 function(s): issueSessionError.

Analyze Your Own Codebase

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

Try Supermodel Free