catch all exceptions thrown by xml pull parser

This commit is contained in:
Daniel Gultsch 2016-05-07 11:34:45 +02:00
parent 76889b9c58
commit fb7525e0b9
1 changed files with 2 additions and 11 deletions

View File

@ -96,17 +96,8 @@ public class XmlReader {
} catch (RuntimeException re) {
}
}
} catch (ArrayIndexOutOfBoundsException e) {
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("xml parser mishandled NullPointerException",
e);
} catch (IndexOutOfBoundsException e) {
throw new IOException("xml parser mishandled IndexOutOfBound", e);
} catch (Exception e) {
throw new IOException("xml parser mishandled "+e.getClass().getName(), e);
}
return null;
}