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