org.lambda.functions.Function0WithException Maven / Gradle / Ivy
package org.lambda.functions;
/**
* Findable name for java.util.function.Supplier that allows exceptions
**/
public interface Function0WithException
{
public Out call() throws Throwable;
}