MCPcopy Create free account
hub / github.com/Dathin/JHusky / execute

Method execute

src/main/java/io/github/dathin/jhusky/HuskyCommand.java:10–18  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8public 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

Callers

nothing calls this directly

Calls 2

commandMethod · 0.95
getCommandNameMethod · 0.95

Tested by

no test coverage detected