Skip to content

Commit

Permalink
Marking the xpath lookup exception as deprecated.
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Jan 16, 2013
1 parent 05db4f1 commit 1b0d907
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions java/client/src/org/openqa/selenium/XPathLookupException.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,16 @@

package org.openqa.selenium;

public class XPathLookupException extends WebDriverException {
public XPathLookupException() {
super();
}
/**
* @deprecated Use InvalidSelectorException instead
*/
@Deprecated
public class XPathLookupException extends InvalidSelectorException {

public XPathLookupException(String message) {
super(message);
}

public XPathLookupException(Throwable cause) {
super(cause);
}

public XPathLookupException(String message, Throwable cause) {
super(message, cause);
}
Expand Down

0 comments on commit 1b0d907

Please sign in to comment.