com.igormaznitsa.meta.common.interfaces.CheckedSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meta-utils Show documentation
Show all versions of meta-utils Show documentation
Set of utilities and auxiliary classes to make development easier.
The newest version!
package com.igormaznitsa.meta.common.interfaces;
/**
* Supplier allows to throw checked exception.
*
* @param type of result
* @since 1.2.1
*/
@FunctionalInterface
public interface CheckedSupplier {
T get() throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy