io.github.cwdesautels.function.CheckedSupplier Maven / Gradle / Ivy
package io.github.cwdesautels.function;
@FunctionalInterface
public interface CheckedSupplier {
T get() throws Exception;
}
package io.github.cwdesautels.function;
@FunctionalInterface
public interface CheckedSupplier {
T get() throws Exception;
}