mirror of https://github.com/apache/maven.git
o renaming exception
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162938 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dd16cb87ac
commit
5812befc4d
|
@ -20,20 +20,20 @@ package org.apache.maven.artifact.resolver;
|
|||
* @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
|
||||
* @version $Id$
|
||||
*/
|
||||
public class ArtifactCollectionException
|
||||
public class TransitiveArtifactResolutionException
|
||||
extends Exception
|
||||
{
|
||||
public ArtifactCollectionException( String message )
|
||||
public TransitiveArtifactResolutionException( String message )
|
||||
{
|
||||
super( message );
|
||||
}
|
||||
|
||||
public ArtifactCollectionException( Throwable cause )
|
||||
public TransitiveArtifactResolutionException( Throwable cause )
|
||||
{
|
||||
super( cause );
|
||||
}
|
||||
|
||||
public ArtifactCollectionException( String message, Throwable cause )
|
||||
public TransitiveArtifactResolutionException( String message, Throwable cause )
|
||||
{
|
||||
super( message, cause );
|
||||
}
|
Loading…
Reference in New Issue