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