blob: ba87ef04d00807a77eb3f663fea322d01845fbd2 [file] [log] [blame] [raw]
package net.querz.nbt;
@FunctionalInterface
public interface ExceptionSupplier<T, E extends Exception> {
T run() throws E;
}