KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > web > tomcat > tc5 > session > ClusteringNotSupportedException


1 /*
2  * JBoss, the OpenSource WebOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.web.tomcat.tc5.session;
8
9
10 /**
11  * This exception is thrown when the clustered HTTPSession-service
12  * is not found
13  *
14  * @author Thomas Peuss <jboss@peuss.de>
15  * @version $Revision: 1.4 $
16  */

17 public class ClusteringNotSupportedException extends Exception JavaDoc
18 {
19    public ClusteringNotSupportedException(String JavaDoc message)
20    {
21       super(message);
22    }
23 }
24
Popular Tags