Home / Function/ Throwable() — netty Function Reference

Throwable() — netty Function Reference

Architecture documentation for the Throwable() function in SslHandler.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  6a6c9f71_8d6b_1ed2_787c_12fbd8c1c17c["Throwable()"]
  4971d882_98ff_3ffd_f66b_31ea649497b3["SslTasksRunner"]
  6a6c9f71_8d6b_1ed2_787c_12fbd8c1c17c -->|defined in| 4971d882_98ff_3ffd_f66b_31ea649497b3
  51b61e7d_0f6d_53c7_ed6a_56a55b2ed5a7["unwrap()"]
  6a6c9f71_8d6b_1ed2_787c_12fbd8c1c17c -->|calls| 51b61e7d_0f6d_53c7_ed6a_56a55b2ed5a7
  6aaf84ff_874c_1428_d191_d32a98e4c16e["decode()"]
  6a6c9f71_8d6b_1ed2_787c_12fbd8c1c17c -->|calls| 6aaf84ff_874c_1428_d191_d32a98e4c16e
  style 6a6c9f71_8d6b_1ed2_787c_12fbd8c1c17c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/SslHandler.java lines 1811–1819

        private Throwable wrapIfNeeded(Throwable cause) {
            if (!inUnwrap) {
                // If we are not in unwrap(...) we can just rethrow without wrapping at all.
                return cause;
            }
            // As the exception would have been triggered by an inbound operation we will need to wrap it in a
            // DecoderException to mimic what a decoder would do when decode(...) throws.
            return cause instanceof DecoderException ? cause : new DecoderException(cause);
        }

Domain

Subdomains

Frequently Asked Questions

What does Throwable() do?
Throwable() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/SslHandler.java.
Where is Throwable() defined?
Throwable() is defined in handler/src/main/java/io/netty/handler/ssl/SslHandler.java at line 1811.
What does Throwable() call?
Throwable() calls 2 function(s): decode, unwrap.

Analyze Your Own Codebase

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

Try Supermodel Free