sortpom.util.CheckedSupplier Maven / Gradle / Ivy
package sortpom.util;
/** Added supplier that can return a checked exception */
@FunctionalInterface
interface CheckedSupplier {
T get() throws E;
}
package sortpom.util;
/** Added supplier that can return a checked exception */
@FunctionalInterface
interface CheckedSupplier {
T get() throws E;
}