blob: c34dba722519897df0058b4c696101aa32ba46c5 [file] [log] [blame] [raw]
package net.querz.io;
@FunctionalInterface
public interface ExceptionBiFunction <T, U, R, E extends Exception> {
R accept(T t, U u) throws E;
}