All Downloads are FREE. Search and download functionalities are using the official Maven repository.

play.libs.SupplierWithException Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
package play.libs;

/**
 * The same as @{link java.util.function.Supplier}, but with "throws Exception"
 */
@FunctionalInterface
public interface SupplierWithException {

    /**
     * Gets a result.
     *
     * @return a result
     */
    T get() throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy