com.kould.function.Consumer Maven / Gradle / Ivy
package com.kould.function;
@FunctionalInterface
public interface Consumer {
void accept(T t) throws Exception;
}
package com.kould.function;
@FunctionalInterface
public interface Consumer {
void accept(T t) throws Exception;
}