com.taggercat.tags
Class NoSessionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by javax.servlet.jsp.JspException
              extended by com.taggercat.tags.NoSessionException
All Implemented Interfaces:
java.io.Serializable

public class NoSessionException
extends javax.servlet.jsp.JspException

The exception thrown from Tagger Cat Tags that require a valid session object, and that session object is not available.

It is important that this Object is used since the exception handling mechanism of JSP is based on exception types.

See Also:
Serialized Form
 

Constructor Summary
NoSessionException()
          Creates a new NoSessionException with the default exception message.
NoSessionException(java.lang.Exception rootcause)
          Creates a new NoSessionException with the default exception message.
NoSessionException(java.lang.String msg)
          Creates a new NoSessionException.
NoSessionException(java.lang.String msg, java.lang.Exception rootcause)
          Creates a new NoSessionException.
 
Method Summary
 
Methods inherited from class javax.servlet.jsp.JspException
getRootCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoSessionException

public NoSessionException(java.lang.String msg)
Creates a new NoSessionException.

Parameters:
msg - the exception message

NoSessionException

public NoSessionException(java.lang.String msg,
                          java.lang.Exception rootcause)
Creates a new NoSessionException.

Parameters:
msg - the exception message
rootcause - the rootCause

NoSessionException

public NoSessionException()
Creates a new NoSessionException with the default exception message.


NoSessionException

public NoSessionException(java.lang.Exception rootcause)
Creates a new NoSessionException with the default exception message.

Parameters:
rootcause - the rootcause