org.lambda.functions.Function2WithException Maven / Gradle / Ivy
package org.lambda.functions;
/**
* Findable name for java.util.function.BiFunction
**/
public interface Function2WithException
{
public Out call(In1 a, In2 b) throws Throwable;
}