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

tech.pardus.utilities.CheckedConsumer Maven / Gradle / Ivy

There is a newer version: 0.0.12
Show newest version
/**
 *
 */
package tech.pardus.utilities;

/**
 * @author deniz.toktay
 * @param 
 * @param 
 * @since Aug 20, 2020
 */
@FunctionalInterface
public interface CheckedConsumer {

	/**
	 * @param t
	 * @throws E
	 */
	void accept(T t) throws E;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy