package ptolemy.data.expr; import org.w3c.dom.Document; import java.io.InputStream; public class XMLParser { public XMLParser() throws Exception { throw new RuntimeException("XMLParser not supported"); } public Document parser(InputStream is) throws Exception { return null; } public Document parser(String str) throws Exception { return null; } }