package org.warp.commonutils.functional; import java.io.IOException; public interface IOBiConsumer { void consume(T t, U u) throws IOException; }