[MNG-564]. Add exception handling.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@210144 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Emmanuel Venisse 2005-07-11 15:04:13 +00:00
parent 4a0a96f918
commit 81afd82296
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public abstract class AbstractMavenReport
}
catch ( Exception e )
{
throw new MojoExecutionException( "An error is occurred in " + getName( locale ) + " report generation." );
throw new MojoExecutionException( "An error has occurred in " + getName( locale ) + " report generation.", e );
}
}