ParserException.java

package edu.udel.cis.vsl.tass.ast.parser;

//import org.xml.sax.SAXException;

public class ParserException extends RuntimeException {

	private static final long serialVersionUID = 459723498573928457L;

	public ParserException(String msg) {
		super(msg);
	}

	public ParserException(String msg, Exception cause) {
		super(msg, cause);
	}

	public String toString() {
		return super.getMessage() + ":\n" + super.toString();
	}

}