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

net.pincette.function.SupplierWithException Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package net.pincette.function;

/**
 * A supplier interface that allows lambda expressions to throw an exception.
 *
 * @author Werner Donn\u00e9
 */
@FunctionalInterface
public interface SupplierWithException {
  @SuppressWarnings("squid:S00112")
  T get() throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy