blob: 0162889b3c068277d3e33d739c63456ecc50eeaf [file] [log] [blame] [raw]
package net.querz.mca;
//@FunctionalInterface
public interface ExceptionFunction<T, R, E extends Exception> {
R accept(T t) throws E;
}