Files
forge/src/main/java/net/slightlymagic/braids/util/ClumsyRunnable.java
2011-10-26 19:54:25 +00:00

16 lines
262 B
Java

package net.slightlymagic.braids.util;
/**
* Like Runnable, but it can throw any Exception.
*/
public interface ClumsyRunnable {
/**
* Run.
*
* @throws Exception
* the exception
*/
void run() throws Exception;
}