001 package com.hammurapi.render;
002
003 public class RenderingException extends Exception {
004
005 public RenderingException(String message) {
006 super(message);
007 }
008
009 public RenderingException(Throwable cause) {
010 super(cause);
011 }
012
013 public RenderingException(String message, Throwable cause) {
014 super(message, cause);
015 }
016
017 }