This commit is contained in:
Daniel Mills
2021-01-05 18:48:55 -05:00
parent 73bfa9beb8
commit 4a30b6d264
12 changed files with 306 additions and 163 deletions

View File

@@ -1,6 +1,8 @@
package com.volmit.iris.util;
public interface NastyRunnable
import java.io.IOException;
public interface IORunnable
{
public void run() throws Throwable;
public void run() throws IOException;
}