mirror of https://github.com/apache/maven.git
o Allowed arbitrary exception chaining
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@824507 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
05dc94a90e
commit
4f81e046ff
|
@ -20,7 +20,6 @@ package org.apache.maven;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import org.apache.maven.project.ProjectBuildingException;
|
import org.apache.maven.project.ProjectBuildingException;
|
||||||
|
|
||||||
|
@ -45,13 +44,7 @@ public class MavenExecutionException
|
||||||
this.pomFile = pomFile;
|
this.pomFile = pomFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
public MavenExecutionException( String message, IOException cause )
|
public MavenExecutionException( String message, Throwable cause )
|
||||||
{
|
|
||||||
super( message, cause );
|
|
||||||
}
|
|
||||||
|
|
||||||
public MavenExecutionException( String message,
|
|
||||||
ProjectBuildingException cause )
|
|
||||||
{
|
{
|
||||||
super( message, cause );
|
super( message, cause );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue