package org.warp.commonutils.functional; import java.io.IOException; public interface IOFunction { U apply(T data) throws IOException; }