mirror of https://github.com/apache/maven.git
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:
parent
03f249b9e4
commit
156464c205
|
@ -1101,7 +1101,7 @@ public class DefaultLifecycleExecutor
|
||||||
}
|
}
|
||||||
catch ( PluginVersionResolutionException e )
|
catch ( PluginVersionResolutionException e )
|
||||||
{
|
{
|
||||||
throw new LifecycleExecutionException( "Error resolving plugin version: " + e.getMessage(), e );
|
throw new LifecycleExecutionException( e.getMessage(), e );
|
||||||
}
|
}
|
||||||
catch ( InvalidVersionSpecificationException e )
|
catch ( InvalidVersionSpecificationException e )
|
||||||
{
|
{
|
||||||
|
@ -1141,7 +1141,7 @@ public class DefaultLifecycleExecutor
|
||||||
}
|
}
|
||||||
catch ( PluginVersionResolutionException e )
|
catch ( PluginVersionResolutionException e )
|
||||||
{
|
{
|
||||||
throw new LifecycleExecutionException( "Error resolving plugin version: " + e.getMessage(), e );
|
throw new LifecycleExecutionException( e.getMessage(), e );
|
||||||
}
|
}
|
||||||
catch ( InvalidVersionSpecificationException e )
|
catch ( InvalidVersionSpecificationException e )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue