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