KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > server > theme > strategy > StrategyException


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

7
8 package org.jboss.portal.server.theme.strategy;
9
10 /**
11  * TODO: A description of this class.
12  *
13  * @author <a HREF="mailto:mholzner@novell.com">Martin Holzner</a>.
14  * @version <tt>$Revision: 1.2 $</tt>
15  */

16 public class StrategyException extends Exception JavaDoc
17 {
18    public StrategyException()
19    {
20    }
21
22    public StrategyException(Throwable JavaDoc t)
23    {
24       super(t);
25    }
26
27    public StrategyException(String JavaDoc msg)
28    {
29       super(msg);
30    }
31 }
32
Popular Tags