Essentially Runnable but can throw an exception. @param Type of exception. @author Matt
| 9 | * @author Matt |
| 10 | */ |
| 11 | public interface Errorable<T extends Throwable> { |
| 12 | /** |
| 13 | * @throws T |
| 14 | * Exception thrown. |
| 15 | */ |
| 16 | void run() throws T; |
| 17 | } |
no outgoing calls
no test coverage detected