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