4 * Exception to indicate that <i>this is not the session you are looking for</i>.
6 public class SessionNotFoundException extends Exception {
8 private static final long serialVersionUID = 1L;
10 public SessionNotFoundException() {
13 public SessionNotFoundException(String message) {
17 public SessionNotFoundException(String message, Throwable cause) {
18 super(message, cause);
21 public SessionNotFoundException(Throwable cause) {