common-utils/src/main/java/org/warp/commonutils/functional/IOBooleanSupplier.java
2020-06-12 18:36:36 +02:00

9 lines
146 B
Java

package org.warp.commonutils.functional;
import java.io.IOException;
public interface IOBooleanSupplier {
boolean get() throws IOException;
}