org.codefilarete.tool.function.ThrowingSupplier Maven / Gradle / Ivy
package org.codefilarete.tool.function;
/**
* @author Guillaume Mary
*/
@FunctionalInterface
public interface ThrowingSupplier {
/**
* Gets a result.
*
* @return a result
*/
T get() throws E;
}