mirror of https://github.com/apache/maven.git
o Improved error messages
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@830274 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cd63cdc648
commit
6595e9fa66
|
@ -89,7 +89,7 @@ public class DeployMojo
|
|||
}
|
||||
catch ( Exception e )
|
||||
{
|
||||
throw new MojoExecutionException( "Failed to deploy artifacts", e );
|
||||
throw new MojoExecutionException( "Failed to deploy artifacts: " + e.getMessage(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -114,7 +114,7 @@ public class ResolveMojo
|
|||
}
|
||||
catch ( Exception e )
|
||||
{
|
||||
throw new MojoExecutionException( "Failed to resolve artifacts", e );
|
||||
throw new MojoExecutionException( "Failed to resolve artifacts: " + e.getMessage(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue