com.github.phantomthief.util.ThrowableSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of more-lambdas Show documentation
Show all versions of more-lambdas Show documentation
Some useful lambda implements for Java 8.
package com.github.phantomthief.util;
/**
* @author w.vela
*/
public interface ThrowableSupplier {
T get() throws X;
static ThrowableSupplier cast(ThrowableSupplier func) {
return func;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy