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