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