Author: brett
Date: Thu Oct 13 18:31:05 2005
New Revision: 320964
URL: http://svn.apache.org/viewcvs?rev=320964&view=rev
Log:
don't need extra message as the exception message is guaranteed to say that
Modified:
maven/components/trunk/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
Modified:
maven/components/trunk/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java?rev=320964&r1=320963&r2=320964&view=diff
==============================================================================
---
maven/components/trunk/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
(original)
+++
maven/components/trunk/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
Thu Oct 13 18:31:05 2005
@@ -1101,7 +1101,7 @@
}
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 @@
}
catch ( PluginVersionResolutionException e )
{
- throw new LifecycleExecutionException( "Error resolving plugin
version: " + e.getMessage(), e );
+ throw new LifecycleExecutionException( e.getMessage(), e );
}
catch ( InvalidVersionSpecificationException e )
{