KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > common > command > UnexpectedCommandException


1 /***************************************
2  * *
3  * Nukes: The OpenSource CMS *
4  * *
5  * Distributable under GPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9 package org.jboss.portal.common.command;
10
11 /**
12  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
13  * @version $Revision: 1.1.1.1 $
14  */

15 public class UnexpectedCommandException extends CommandException
16 {
17    public UnexpectedCommandException()
18    {
19    }
20
21    public UnexpectedCommandException(String JavaDoc message)
22    {
23       super(message);
24    }
25
26    public UnexpectedCommandException(String JavaDoc message, Throwable JavaDoc cause)
27    {
28       super(message, cause);
29    }
30
31    public UnexpectedCommandException(Throwable JavaDoc cause)
32    {
33       super(cause);
34    }
35 }
36
Popular Tags