1 package org.sapia.magnet.render;2 3 // Import of Sapia's magnet classes4 // --------------------------------5 import org.sapia.magnet.MagnetException;6 7 8 /**9 *10 *11 * @author Jean-Cedric Desrochers12 *13 * <dl>14 * <dt><b>Copyright:</b><dd>Copyright © 2002-2003 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>15 * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the16 * <a HREF="http://www.sapia-oss.org/license.html" target="sapia-license">license page</a> at the Sapia OSS web site</dd></dt>17 * </dl>18 */19 public class RenderingException extends MagnetException {20 21 /////////////////////////////////////////////////////////////////////////////////////////22 //////////////////////////////////// CONSTRUCTORS /////////////////////////////////////23 /////////////////////////////////////////////////////////////////////////////////////////24 25 /**26 * Creates a new RenderingException instance with the arguments passed in.27 *28 * @param aMessage The message describing the error.29 * @param aSourceError The source error to encapsulate.30 */31 public RenderingException(String aMessage, Throwable aSourceError) {32 super(aMessage, aSourceError);33 }34 35 /**36 * Creates a new RenderingException instance with the argument passed in.37 *38 * @param aMessage The message describing the error.39 */40 public RenderingException(String aMessage) {41 super(aMessage);42 }43 }44