7 lines
161 B
Java
7 lines
161 B
Java
package net.locusworks.common.interfaces;
|
|
|
|
@FunctionalInterface
|
|
public interface ThrowingConsumer<T, E extends Exception> {
|
|
void accept(T t) throws E;
|
|
}
|