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 10 package org.jboss.portal.server.theme.render;11 12 /**13 * Generic exception for the render process.14 *15 * @author <a HREF="mailto:mholzner@novell.com>Martin Holzner</a>16 * @version $LastChangedRevision$, $LastChangedDate$17 */18 public class RenderException19 extends Exception 20 {21 /**22 * @see java.lang.Exception23 */24 public RenderException()25 {26 }27 28 /**29 * @see java.lang.Exception30 */31 public RenderException(Throwable t)32 {33 super(t);34 }35 36 /**37 * @see java.lang.Exception38 */39 public RenderException(String message)40 {41 super(message);42 }43 }44