/* * TrialException.java * * Created on May 14, 2007, 11:47 AM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ /** * * @author Matt DesVoigne */ public class TrialException extends Exception { /** Creates a new instance of TrialException */ public TrialException(String msg) { super(msg); } }