OpenSslHandshakeException Class — netty Architecture
Architecture documentation for the OpenSslHandshakeException class in ReferenceCountedOpenSslEngine.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 488c70e0_1048_3be6_22b2_dacc9d58e8f0["OpenSslHandshakeException"] e8cf4c21_519c_af0d_e66f_ef135c52b428["ReferenceCountedOpenSslEngine.java"] 488c70e0_1048_3be6_22b2_dacc9d58e8f0 -->|defined in| e8cf4c21_519c_af0d_e66f_ef135c52b428 5c2f4191_609d_b5a4_d104_2e7c0f3ed62a["OpenSslHandshakeException()"] 488c70e0_1048_3be6_22b2_dacc9d58e8f0 -->|method| 5c2f4191_609d_b5a4_d104_2e7c0f3ed62a b0cde290_6597_bf77_9e0d_81bc99206f28["errorCode()"] 488c70e0_1048_3be6_22b2_dacc9d58e8f0 -->|method| b0cde290_6597_bf77_9e0d_81bc99206f28
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java lines 2780–2792
private static final class OpenSslHandshakeException extends SSLHandshakeException implements NativeSslException {
private final int errorCode;
OpenSslHandshakeException(String reason, int errorCode) {
super(reason);
this.errorCode = errorCode;
}
@Override
public int errorCode() {
return errorCode;
}
}
Source
Frequently Asked Questions
What is the OpenSslHandshakeException class?
OpenSslHandshakeException is a class in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java.
Where is OpenSslHandshakeException defined?
OpenSslHandshakeException is defined in handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java at line 2780.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free