org.openqa.selenium.InvalidCookieDomainException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-api Show documentation
Show all versions of selenium-api Show documentation
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
package org.openqa.selenium;
/**
* Thrown when attempting to add a cookie under a different domain than the
* current URL.
*
* @see org.openqa.selenium.WebDriver.Options#addCookie(Cookie)
*/
public class InvalidCookieDomainException extends WebDriverException {
public InvalidCookieDomainException() {
}
public InvalidCookieDomainException(String message) {
super(message);
}
public InvalidCookieDomainException(Throwable cause) {
super(cause);
}
public InvalidCookieDomainException(String message, Throwable cause) {
super(message, cause);
}
}