more xmlpullparser fixes

This commit is contained in:
iNPUTmice 2014-07-03 22:53:18 +02:00
parent 38e2110aa4
commit f33d2497f8
1 changed files with 2 additions and 0 deletions

View File

@ -81,6 +81,8 @@ public class XmlReader {
throw new IOException("xml parser mishandled ArrayIndexOufOfBounds", e);
} catch (StringIndexOutOfBoundsException e) {
throw new IOException("xml parser mishandled StringIndexOufOfBounds", e);
} catch (NullPointerException e) {
throw new IOException("null pointer in xml parser");
}
return null;
}