The method net.sourceforge.plantuml.api.Performance.getHealthCheck(), in Line 127 uses the com.sun.management.OperatingSystemMXBean class, that isn't included in all jvm. A previous test like:
final Class cl = Class.forName("com.sun.management.OperatingSystemMXBean");
if (cl == null) {
Log.info("Cannot load com.sun.management.OperatingSystemMXBean");
jvmCpuTime = -1;
} else if (...)
could prevent the code from breaking up.