throw new ParseException("Parse Error : " + nodeName, e);
}
}
public ASXPlaylist getPlaylist(String asx) throws ParseException {
playlist = new ASXPlaylist();
SAXParser sax = new SAXParser(this);
sax.parseDocument(XMLParser.parse(asx));
return playlist;
}