AnnotatedNoRouteToHostException Class — netty Architecture
Architecture documentation for the AnnotatedNoRouteToHostException class in AbstractChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b1d21b68_6c56_1d9a_bf5a_974392f81dde["AnnotatedNoRouteToHostException"] 2f45d36a_a64d_2e11_9b5d_198acbea865d["AbstractChannel.java"] b1d21b68_6c56_1d9a_bf5a_974392f81dde -->|defined in| 2f45d36a_a64d_2e11_9b5d_198acbea865d 592e02f1_647f_62b7_b654_0540f0212270["AnnotatedNoRouteToHostException()"] b1d21b68_6c56_1d9a_bf5a_974392f81dde -->|method| 592e02f1_647f_62b7_b654_0540f0212270 0b0f491b_471a_e5ba_bc96_e9ee6f92efd2["Throwable()"] b1d21b68_6c56_1d9a_bf5a_974392f81dde -->|method| 0b0f491b_471a_e5ba_bc96_e9ee6f92efd2
Relationship Graph
Source Code
transport/src/main/java/io/netty/channel/AbstractChannel.java lines 1064–1078
private static final class AnnotatedNoRouteToHostException extends NoRouteToHostException {
private static final long serialVersionUID = -6801433937592080623L;
AnnotatedNoRouteToHostException(NoRouteToHostException exception, SocketAddress remoteAddress) {
super(exception.getMessage() + ": " + remoteAddress);
initCause(exception);
}
// Suppress a warning since this method doesn't need synchronization
@Override
public Throwable fillInStackTrace() {
return this;
}
}
Source
Frequently Asked Questions
What is the AnnotatedNoRouteToHostException class?
AnnotatedNoRouteToHostException is a class in the netty codebase, defined in transport/src/main/java/io/netty/channel/AbstractChannel.java.
Where is AnnotatedNoRouteToHostException defined?
AnnotatedNoRouteToHostException is defined in transport/src/main/java/io/netty/channel/AbstractChannel.java at line 1064.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free