io.castled.functionalinterfaces.ThrowingConsumer Maven / Gradle / Ivy
package io.castled.functionalinterfaces;
@FunctionalInterface
public interface ThrowingConsumer {
void accept(T t) throws Exception;
}
package io.castled.functionalinterfaces;
@FunctionalInterface
public interface ThrowingConsumer {
void accept(T t) throws Exception;
}