()
| 8 | public abstract class HuskyCommand extends AbstractMojo { |
| 9 | |
| 10 | public void execute() throws MojoExecutionException { |
| 11 | try { |
| 12 | command(); |
| 13 | } |
| 14 | catch (InterruptedException | IOException | MojoExecutionException ex) { |
| 15 | getLog().error(ex); |
| 16 | throw new MojoExecutionException(String.format("Unable to run %s goal", getCommandName())); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | abstract void command() throws InterruptedException, IOException, MojoExecutionException; |
| 21 |
nothing calls this directly
no test coverage detected