Home | History | Annotate | Download | only in utils

Lines Matching refs:XmlPullParserException

24 import org.xmlpull.v1.XmlPullParserException;
30 throws XmlPullParserException, java.io.IOException {
42 throw new XmlPullParserException("Expected " + endTag + " end tag at: " + parser.getName());
47 throw new XmlPullParserException("Document ended before " + endTag + " end tag");
66 throws XmlPullParserException, java.io.IOException {
78 throw new XmlPullParserException("Expected " + endTag + " end tag at: " + parser.getName());
83 throw new XmlPullParserException("Document ended before " + endTag + " end tag");
97 throws XmlPullParserException, java.io.IOException {
110 throw new XmlPullParserException("Need value attribute in item");
112 throw new XmlPullParserException("Not a number in value attribute in item");
115 throw new XmlPullParserException("Expected item tag at: " + parser.getName());
123 throw new XmlPullParserException(
130 throw new XmlPullParserException("Document ended before " + endTag + " end tag");
135 throws XmlPullParserException, java.io.IOException {
152 throw new XmlPullParserException("Unexpected end tag in <string>: " + parser.getName());
156 throw new XmlPullParserException("Unexpected start tag in <string>: " + parser.getName());
159 throw new XmlPullParserException("Unexpected end of document in <string>");
176 throw new XmlPullParserException("Unknown tag: " + tagName);
187 throw new XmlPullParserException(
190 throw new XmlPullParserException(
193 throw new XmlPullParserException(
197 throw new XmlPullParserException("Unexpected end of document in <" + tagName + ">");
201 throws XmlPullParserException, java.io.IOException {
217 throw new XmlPullParserException("Need value attribute in <" + tagName + ">");
219 throw new XmlPullParserException("Not a number in value attribute in <" + tagName + ">");
232 * @throws XmlPullParserException if the START_TAG is not recognized.
236 throws XmlPullParserException, IOException;