001 package org.shiftone.jrat.util;
002
003 import org.shiftone.jrat.core.JRatException;
004
005
006 /**
007 * @author jeff@shiftone.org (Jeff Drost)
008 */
009 public class AssertionFailedException extends JRatException {
010
011 public AssertionFailedException(String message) {
012 super(message);
013 }
014 }