Keep backwards compatibility by deprecating old methods

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@587678 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Carlos Sanchez Gonzalez 2007-10-23 22:20:33 +00:00
parent e3dee74168
commit bfd273cb0f
1 changed files with 8 additions and 0 deletions

View File

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