Keep backwards compatibility by deprecating old methods

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@587569 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Carlos Sanchez Gonzalez 2007-10-23 17:39:10 +00:00
parent 2207068fe3
commit 487bf01ca2
1 changed files with 8 additions and 0 deletions

View File

@ -34,4 +34,12 @@ public class InvalidDependencyVersionException
{ {
super( message, cause ); super( message, cause );
} }
/**
* @deprecated use {@link #InvalidDependencyVersionException(String, InvalidVersionSpecificationException)}
*/
public InvalidDependencyVersionException( String message, Exception cause )
{
super( message, cause );
}
} }