blob: ebf57da857950e321a4486b45b86d7492c888b24 [file] [log] [blame] [raw]
package net.querz;
@FunctionalInterface
public interface ExceptionRunnable<E extends Exception> {
void run() throws E;
}