KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > exceptions > JahiaSessionExpirationException


1 // $Id: JahiaSessionExpirationException.java 16665 2007-03-08 12:09:47Z bpapez $
2
//
3
//
4
// ____.
5
// __/\ ______| |__/\. _______
6
// __ .____| | \ | +----+ \
7
// _______| /--| | | - \ _ | : - \_________
8
// \\______: :---| : : | : | \________>
9
// |__\---\_____________:______: :____|____:_____\
10
// /_____|
11
//
12
// . . . i n j a h i a w e t r u s t . . .
13
//
14

15
16 package org.jahia.exceptions;
17
18
19 /**
20  * This exception is raised when a session is requested which is null, this
21  * will be concidered as a session expiration in most of the cases.
22  *
23  * @author Fulco Houkes
24  * @version 1.0
25  */

26 public class JahiaSessionExpirationException extends JahiaException
27 {
28     //-------------------------------------------------------------------------
29
/** Default constructor
30      */

31     public JahiaSessionExpirationException ()
32     {
33         super ("403 - session expired", "403 - Session Expiration",
34                SESSION_ERROR, ERROR_SEVERITY);
35     }
36 }
37
38
Popular Tags