// Check again
try {
Class.forName("javafx.util.Pair");
} catch (ClassNotFoundException ex3) {
throw new JuRuntimeException("Still cannot resolve FX objects after adding JAR file", ex3);
}
logger.info("Successfully added FX Runtime to classpath");
} catch (Exception ex2) {
throw new JuRuntimeException("Couldn't initialize JavaFX classpath", ex2);
}
}
}