mirror of https://github.com/apache/maven.git
restoring these changes for backward compat.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@587663 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c81694144f
commit
e3dee74168
|
@ -36,6 +36,25 @@ public class DuplicateProjectException
|
|||
|
||||
private final File conflictingProjectFile;
|
||||
|
||||
/**
|
||||
* @deprecated use {@link #DuplicateProjectException(String, File, File, String)}
|
||||
*/
|
||||
public DuplicateProjectException( String message )
|
||||
{
|
||||
this( null, null, null, message );
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated use {@link #DuplicateProjectException(String, File, File, String)}
|
||||
*/
|
||||
public DuplicateProjectException( String message, Exception e )
|
||||
{
|
||||
super( message, e );
|
||||
this.projectId = null;
|
||||
this.existingProjectFile = null;
|
||||
this.conflictingProjectFile = null;
|
||||
}
|
||||
|
||||
public DuplicateProjectException( String projectId,
|
||||
File existingProjectFile,
|
||||
File conflictingProjectFile,
|
||||
|
|
Loading…
Reference in New Issue