/** Construct an XmlToken from the specified string.
* @param init The initialization string.
* @exception Exception If the string is not parsable.
*/
public XMLToken(String init) throws Exception {
XMLParser parser = new XMLParser();
_doc = parser.parser(init);
_toString = init;
}