Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ private void store(final String content, final File out) throws MojoExecutionExc
try {
Files.createDirectories(parent);
} catch (final IOException e) {
throw new MojoExecutionException(e);
throw new MojoExecutionException("Error while creating directory '" + parent + "'", e);
}
}

Expand Down
Loading