common-utils/src/main/java/org/warp/commonutils/functional/IOIntegerSupplier.java

9 lines
142 B
Java
Raw Normal View History

2020-06-12 18:36:36 +02:00
package org.warp.commonutils.functional;
import java.io.IOException;
public interface IOIntegerSupplier {
int get() throws IOException;
}