cn.creekmoon.excelUtils.core.ExConsumer Maven / Gradle / Ivy
package cn.creekmoon.excelUtils.core;
/**
* @author JY
* @date 2022/1/11
*/
@FunctionalInterface
public interface ExConsumer {
void accept(T t) throws Exception;
public static final ExConsumer EMPTY = o -> {
};
public static ExConsumer empty() {
return EMPTY;
}
}