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:
Benjamin Bentmann 2009-10-12 21:31:09 +00:00
parent 05dc94a90e
commit 4f81e046ff
1 changed files with 1 additions and 8 deletions

View File

@ -20,7 +20,6 @@ package org.apache.maven;
*/
import java.io.File;
import java.io.IOException;
import org.apache.maven.project.ProjectBuildingException;
@ -45,13 +44,7 @@ public class MavenExecutionException
this.pomFile = pomFile;
}
public MavenExecutionException( String message, IOException cause )
{
super( message, cause );
}
public MavenExecutionException( String message,
ProjectBuildingException cause )
public MavenExecutionException( String message, Throwable cause )
{
super( message, cause );
}