mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
16 lines
262 B
Java
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;
|
|
}
|