Runnable function which can throw an exception.
| 574 | |
| 575 | /** Runnable function which can throw an exception. */ |
| 576 | @FunctionalInterface |
| 577 | public interface CommandRunnable { |
| 578 | void run() throws Exception; |
| 579 | } |
| 580 | |
| 581 | /** Runnable function which can retrieve a project name related to the task */ |
| 582 | public interface ProjectCommandRunnable extends CommandRunnable { |
no outgoing calls
no test coverage detected