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

extension.lang.CheckedProducer Maven / Gradle / Ivy

The newest version!
package extension.lang;

public interface CheckedProducer {
    T get() throws Exception;

    public static  T checkedToRuntime(final CheckedProducer producer) {
        try {
            return producer.get();
        } catch (final Exception e) {
            throw new RuntimeException(e);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy