001 /*
002 @license.text@
003 */
004 package biz.hammurapi.render;
005
006 import biz.hammurapi.Exception;
007
008 /**
009 * @author Pavel Vlasov
010 * @version $Revision: 1.2 $
011 */
012 public class RenderingException extends Exception {
013
014 /**
015 * Comment for <code>serialVersionUID</code>
016 */
017 private static final long serialVersionUID = 2621779992631421639L;
018 /**
019 *
020 */
021 public RenderingException() {
022 super();
023 // TODO Auto-generated constructor stub
024 }
025 /**
026 * @param message
027 */
028 public RenderingException(String message) {
029 super(message);
030 // TODO Auto-generated constructor stub
031 }
032 /**
033 * @param message
034 * @param cause
035 */
036 public RenderingException(String message, Throwable cause) {
037 super(message, cause);
038 // TODO Auto-generated constructor stub
039 }
040 /**
041 * @param cause
042 */
043 public RenderingException(Throwable cause) {
044 super(cause);
045 // TODO Auto-generated constructor stub
046 }
047 }