Constructors Summary |
---|
public SkipPageException()Creates a SkipPageException with no message.
super();
|
public SkipPageException(String message)Creates a SkipPageException with the provided message.
super( message );
|
public SkipPageException(String message, Throwable rootCause)Creates a SkipPageException with the provided message and root cause.
super( message, rootCause );
|
public SkipPageException(Throwable rootCause)Creates a SkipPageException with the provided root cause.
super( rootCause );
|