| 112 | } |
| 113 | |
| 114 | public interface EngineTask { |
| 115 | public void work() throws Exception; |
| 116 | |
| 117 | public void done(); |
| 118 | |
| 119 | public void fail(Exception e); |
| 120 | } |
| 121 | |
| 122 | // public static class FatalError extends RuntimeException { |
| 123 | // private Engine engine; |
no outgoing calls
no test coverage detected