in geronimo-metrics-common/src/main/java/org/apache/geronimo/microprofile/metrics/common/SimpleTimerImpl.java [80:91]
public void time(final Runnable runnable) {
try {
time(() -> {
runnable.run();
return null;
});
} catch (final RuntimeException re) {
throw re;
} catch (Exception e) {
throw new IllegalStateException(e);
}
}