/**
 * A Class class.
 * <P>
 * @author Bjoern Martin
 */
public class TransformException extends Exception {

  public TransformException(String excText) {
    super(excText);
  }

  public TransformException() {
    super();
  }
}

 