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:
Jason van Zyl 2004-08-10 00:29:44 +00:00
parent dd16cb87ac
commit 5812befc4d
1 changed files with 4 additions and 4 deletions

View File

@ -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 );
}