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

9 lines
142 B
Java

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