001 package org.shiftone.jrat.core;
002
003
004 import org.shiftone.jrat.util.NestedRuntimeException;
005
006
007 /**
008 * @author jeff@shiftone.org (Jeff Drost)
009 */
010 public class JRatException extends NestedRuntimeException {
011
012 public JRatException(String message) {
013 super(message);
014 }
015
016
017 public JRatException(String message, Throwable cause) {
018 super(message, cause);
019 }
020 }