Interface ThrowingSupplier<T>

Type Parameters:
T - the type of results supplied by this supplier
All Superinterfaces:
Supplier<T>
All Known Subinterfaces:
InstanceSupplier<T>

public interface ThrowingSupplier<T> extends Supplier<T>
A Supplier that allows invocation of code that throws a checked exception.
Since:
6.0
Author:
Stephane Nicoll, Phillip Webb