All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.igormaznitsa.meta.common.interfaces.CheckedSupplier Maven / Gradle / Ivy

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