don't need extra message as the exception message is guaranteed to say that

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@320964 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-10-14 01:31:05 +00:00
parent 03f249b9e4
commit 156464c205
1 changed files with 2 additions and 2 deletions

View File

@ -1101,7 +1101,7 @@ public class DefaultLifecycleExecutor
}
catch ( PluginVersionResolutionException e )
{
throw new LifecycleExecutionException( "Error resolving plugin version: " + e.getMessage(), e );
throw new LifecycleExecutionException( e.getMessage(), e );
}
catch ( InvalidVersionSpecificationException e )
{
@ -1141,7 +1141,7 @@ public class DefaultLifecycleExecutor
}
catch ( PluginVersionResolutionException e )
{
throw new LifecycleExecutionException( "Error resolving plugin version: " + e.getMessage(), e );
throw new LifecycleExecutionException( e.getMessage(), e );
}
catch ( InvalidVersionSpecificationException e )
{