1 /*2 * JBoss, the OpenSource WebOS3 *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-service12 * is not found13 *14 * @author Thomas Peuss <jboss@peuss.de>15 * @version $Revision: 1.4 $16 */17 public class ClusteringNotSupportedException extends Exception 18 {19 public ClusteringNotSupportedException(String message)20 {21 super(message);22 }23 }24