com.nordstrom.automation.selenium.exceptions.ContainerVacatedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-foundation Show documentation
Show all versions of selenium-foundation Show documentation
Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).
package com.nordstrom.automation.selenium.exceptions;
/**
* This exception is thrown when a client calls a method of a container object that's no longer valid.
*/
public class ContainerVacatedException extends RuntimeException {
private static final long serialVersionUID = -7653982501901130765L;
public ContainerVacatedException(VacationStackTrace stackTrace) {
super(stackTrace);
}
}