de.thksystems.util.function.CheckedConsumer Maven / Gradle / Ivy
package de.thksystems.util.function;
@FunctionalInterface
public interface CheckedConsumer {
void accept(T t) throws X;
}
package de.thksystems.util.function;
@FunctionalInterface
public interface CheckedConsumer {
void accept(T t) throws X;
}