PrematureChannelClosureException Class — netty Architecture
Architecture documentation for the PrematureChannelClosureException class in PrematureChannelClosureException.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3f320066_635a_ebc7_7fed_49ae9d9402cf["PrematureChannelClosureException"] dca242a4_e6ea_49eb_b28b_07e3d505f0ab["PrematureChannelClosureException.java"] 3f320066_635a_ebc7_7fed_49ae9d9402cf -->|defined in| dca242a4_e6ea_49eb_b28b_07e3d505f0ab e4040d02_2a00_7da6_1b0f_415eec2d4fd3["PrematureChannelClosureException()"] 3f320066_635a_ebc7_7fed_49ae9d9402cf -->|method| e4040d02_2a00_7da6_1b0f_415eec2d4fd3
Relationship Graph
Source Code
codec-base/src/main/java/io/netty/handler/codec/PrematureChannelClosureException.java lines 25–54
public class PrematureChannelClosureException extends CodecException {
private static final long serialVersionUID = 4907642202594703094L;
/**
* Creates a new instance.
*/
public PrematureChannelClosureException() { }
/**
* Creates a new instance.
*/
public PrematureChannelClosureException(String message, Throwable cause) {
super(message, cause);
}
/**
* Creates a new instance.
*/
public PrematureChannelClosureException(String message) {
super(message);
}
/**
* Creates a new instance.
*/
public PrematureChannelClosureException(Throwable cause) {
super(cause);
}
}
Source
Frequently Asked Questions
What is the PrematureChannelClosureException class?
PrematureChannelClosureException is a class in the netty codebase, defined in codec-base/src/main/java/io/netty/handler/codec/PrematureChannelClosureException.java.
Where is PrematureChannelClosureException defined?
PrematureChannelClosureException is defined in codec-base/src/main/java/io/netty/handler/codec/PrematureChannelClosureException.java at line 25.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free