All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openqa.selenium.InvalidCookieDomainException Maven / Gradle / Ivy

There is a newer version: 4.20.0
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy