UnsupportedOperatingSystemException Class — netty Architecture
Architecture documentation for the UnsupportedOperatingSystemException class in UnsupportedOperatingSystemException.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD f6d3693b_9a0e_ba91_d0a8_3ac9f36e457b["UnsupportedOperatingSystemException"] bbcdf53f_bfb2_78f3_6060_642eaac0e726["UnsupportedOperatingSystemException.java"] f6d3693b_9a0e_ba91_d0a8_3ac9f36e457b -->|defined in| bbcdf53f_bfb2_78f3_6060_642eaac0e726 6383cf5b_8fd9_5ac5_279a_bf5538a5c986["raise()"] f6d3693b_9a0e_ba91_d0a8_3ac9f36e457b -->|method| 6383cf5b_8fd9_5ac5_279a_bf5538a5c986 49f77c8e_3aff_f68b_1b5f_e96fc963feeb["UnsupportedOperatingSystemException()"] f6d3693b_9a0e_ba91_d0a8_3ac9f36e457b -->|method| 49f77c8e_3aff_f68b_1b5f_e96fc963feeb
Relationship Graph
Source Code
transport-sctp/src/main/java/com/sun/nio/sctp/UnsupportedOperatingSystemException.java lines 18–40
public class UnsupportedOperatingSystemException extends RuntimeException {
private static final long serialVersionUID = -221782446524784377L;
public static void raise() {
throw new UnsupportedOperatingSystemException();
}
public UnsupportedOperatingSystemException() {
}
public UnsupportedOperatingSystemException(String message) {
super(message);
}
public UnsupportedOperatingSystemException(String message, Throwable cause) {
super(message, cause);
}
public UnsupportedOperatingSystemException(Throwable cause) {
super(cause);
}
}
Source
Frequently Asked Questions
What is the UnsupportedOperatingSystemException class?
UnsupportedOperatingSystemException is a class in the netty codebase, defined in transport-sctp/src/main/java/com/sun/nio/sctp/UnsupportedOperatingSystemException.java.
Where is UnsupportedOperatingSystemException defined?
UnsupportedOperatingSystemException is defined in transport-sctp/src/main/java/com/sun/nio/sctp/UnsupportedOperatingSystemException.java at line 18.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free