001/*
002 * Copyright (c) 2013 Nu Echo Inc. All rights reserved.
003 */
004
005package com.nuecho.rivr.core.servlet.session;
006
007/**
008 * Thrown when a session could not be found in the SessionContainer. Typically,
009 * this occurs when an error occurs on the client-side while the dialogue has
010 * terminated on the server-side.
011 * 
012 * @author Nu Echo Inc.
013 */
014public final class SessionNotFoundException extends Exception {
015
016    private static final long serialVersionUID = 1L;
017
018    public SessionNotFoundException() {}
019
020    public SessionNotFoundException(String message, Throwable cause) {
021        super(message, cause);
022    }
023
024    public SessionNotFoundException(String message) {
025        super(message);
026    }
027
028    public SessionNotFoundException(Throwable cause) {
029        super(cause);
030    }
031}