KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > server > theme > LayoutException


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.server.theme;
10
11 /**
12  * Generic exception in the layout functionality.
13  *
14  * @author <a HREF="mailto:mholzner@novell.com>Martin Holzner</a>
15  * @version $LastChangedRevision$, $LastChangedDate$
16  */

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