This commit is contained in:
jendave
2011-08-09 19:34:12 +00:00
parent 277a6f255f
commit d9a785ee3a
1028 changed files with 267358 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package net.slightlymagic.braids.util;
/**
* Like Runnable, but it can throw any Exception.
*/
public interface ClumsyRunnable {
public void run() throws Exception;
}