in src/main/java/org/apache/activemq/artemis/nativo/jlibaio/LibaioContext.java [324:329]
private static <T> T checkNotNull(T arg, String text) {
if (arg == null) {
throw new NullPointerException(text);
}
return arg;
}