All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.soffa.foundation.commons.ExecUtil Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package io.soffa.foundation.commons;

public final class ExecUtil {

    private static final Logger LOG = Logger.get(ExecUtil.class);

    private ExecUtil() {
    }

    public static void safe(Runnable runnable) {
        try {
            runnable.run();
        } catch (Exception e) {
            LOG.error("[safe-exec] failed to persist syslog", e);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy