1 package com.atlassian.pageobjects.binder;
2
3 /**
4 * Thrown if the page was unable to validate its state
5 */
6 public class InvalidPageStateException extends PageBindingException
7 {
8 public InvalidPageStateException(Object pageObject, Throwable cause)
9 {
10 super(pageObject, cause);
11 }
12
13 public InvalidPageStateException(String message, Object pageObject)
14 {
15 super(message, pageObject);
16 }
17
18 public InvalidPageStateException(String message, Object pageObject, Throwable cause)
19 {
20 super(message, pageObject, cause);
21 }
22 }