blob: d49ccc90826088c42cb62a63b3dfa839dc99749e [file] [log] [blame] [raw]
package net.querz.io;
@FunctionalInterface
public interface ExceptionTriConsumer<T, U, V, E extends Exception> {
void accept(T t, U u, V v) throws E;
}