de.team33.libs.exceptional.v3.XSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib-exceptional Show documentation
Show all versions of lib-exceptional Show documentation
Provides wrapping and unwrapping checked exceptions.
package de.team33.libs.exceptional.v3;
/**
* A kind of supplier that allows to throw a checked exception.
*
* @see java.util.function.Supplier
*/
@FunctionalInterface
public interface XSupplier {
/**
* Performs this operation on the given argument.
*
* @throws X if so.
* @see java.util.function.Supplier#get()
*/
T get() throws X;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy