HttpProxyConnectException Class — netty Architecture
Architecture documentation for the HttpProxyConnectException class in HttpProxyHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b24e901b_6399_565e_f6ff_9b82d4b336f7["HttpProxyConnectException"] 39b60d5f_2d6d_6316_a4f9_8bff945ed606["HttpProxyHandler.java"] b24e901b_6399_565e_f6ff_9b82d4b336f7 -->|defined in| 39b60d5f_2d6d_6316_a4f9_8bff945ed606 e0b0ece8_dbb9_37f2_9c43_0afc38f40f18["HttpProxyConnectException()"] b24e901b_6399_565e_f6ff_9b82d4b336f7 -->|method| e0b0ece8_dbb9_37f2_9c43_0afc38f40f18 a04b286b_ed2e_f807_59de_7da0df4ac07b["HttpHeaders()"] b24e901b_6399_565e_f6ff_9b82d4b336f7 -->|method| a04b286b_ed2e_f807_59de_7da0df4ac07b
Relationship Graph
Source Code
handler-proxy/src/main/java/io/netty/handler/proxy/HttpProxyHandler.java lines 222–242
public static final class HttpProxyConnectException extends ProxyConnectException {
private static final long serialVersionUID = -8824334609292146066L;
private final HttpHeaders headers;
/**
* @param message The failure message.
* @param headers Header associated with the connection failure. May be {@code null}.
*/
public HttpProxyConnectException(String message, HttpHeaders headers) {
super(message);
this.headers = headers;
}
/**
* Returns headers, if any. May be {@code null}.
*/
public HttpHeaders headers() {
return headers;
}
}
Source
Frequently Asked Questions
What is the HttpProxyConnectException class?
HttpProxyConnectException is a class in the netty codebase, defined in handler-proxy/src/main/java/io/netty/handler/proxy/HttpProxyHandler.java.
Where is HttpProxyConnectException defined?
HttpProxyConnectException is defined in handler-proxy/src/main/java/io/netty/handler/proxy/HttpProxyHandler.java at line 222.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free