NotSslRecordException Class — netty Architecture
Architecture documentation for the NotSslRecordException class in NotSslRecordException.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fe2f6bce_bfd0_ced5_3d4c_fefb1423beb2["NotSslRecordException"] 17652a79_c9ac_1c47_345a_d5568e1483cb["NotSslRecordException.java"] fe2f6bce_bfd0_ced5_3d4c_fefb1423beb2 -->|defined in| 17652a79_c9ac_1c47_345a_d5568e1483cb ea6c397c_04c1_21a7_e910_32cea9d18839["NotSslRecordException()"] fe2f6bce_bfd0_ced5_3d4c_fefb1423beb2 -->|method| ea6c397c_04c1_21a7_e910_32cea9d18839
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/NotSslRecordException.java lines 28–48
public class NotSslRecordException extends SSLException {
private static final long serialVersionUID = -4316784434770656841L;
public NotSslRecordException() {
super("");
}
public NotSslRecordException(String message) {
super(message);
}
public NotSslRecordException(Throwable cause) {
super(cause);
}
public NotSslRecordException(String message, Throwable cause) {
super(message, cause);
}
}
Source
Frequently Asked Questions
What is the NotSslRecordException class?
NotSslRecordException is a class in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/NotSslRecordException.java.
Where is NotSslRecordException defined?
NotSslRecordException is defined in handler/src/main/java/io/netty/handler/ssl/NotSslRecordException.java at line 28.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free