tech.pardus.utilities.CheckedConsumer Maven / Gradle / Ivy
/**
*
*/
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