StacklessSSLHandshakeException Class — netty Architecture
Architecture documentation for the StacklessSSLHandshakeException class in StacklessSSLHandshakeException.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 03b2018a_5b49_7ed9_80cd_352ac2e55a6c["StacklessSSLHandshakeException"] bf5422a2_b642_6b18_7493_62db06dd930f["StacklessSSLHandshakeException.java"] 03b2018a_5b49_7ed9_80cd_352ac2e55a6c -->|defined in| bf5422a2_b642_6b18_7493_62db06dd930f b3228c63_f378_c06a_3c58_a819ced33f05["StacklessSSLHandshakeException()"] 03b2018a_5b49_7ed9_80cd_352ac2e55a6c -->|method| b3228c63_f378_c06a_3c58_a819ced33f05 fb0701d3_e8f3_4010_da4e_15e0493480f6["Throwable()"] 03b2018a_5b49_7ed9_80cd_352ac2e55a6c -->|method| fb0701d3_e8f3_4010_da4e_15e0493480f6
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/StacklessSSLHandshakeException.java lines 25–46
final class StacklessSSLHandshakeException extends SSLHandshakeException {
private static final long serialVersionUID = -1244781947804415549L;
private StacklessSSLHandshakeException(String reason) {
super(reason);
}
@Override
public Throwable fillInStackTrace() {
// This is a performance optimization to not fill in the
// stack trace as this is a stackless exception.
return this;
}
/**
* Creates a new {@link StacklessSSLHandshakeException} which has the origin of the given {@link Class} and method.
*/
static StacklessSSLHandshakeException newInstance(String reason, Class<?> clazz, String method) {
return ThrowableUtil.unknownStackTrace(new StacklessSSLHandshakeException(reason), clazz, method);
}
}
Source
Frequently Asked Questions
What is the StacklessSSLHandshakeException class?
StacklessSSLHandshakeException is a class in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/StacklessSSLHandshakeException.java.
Where is StacklessSSLHandshakeException defined?
StacklessSSLHandshakeException is defined in handler/src/main/java/io/netty/handler/ssl/StacklessSSLHandshakeException.java at line 25.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free