Do not wrap XmlPullParser exception in openStream()

This commit is contained in:
Florian Schmaus 2019-02-10 19:03:07 +01:00
parent 7dee3b88a2
commit b7d6edcd1e
1 changed files with 3 additions and 7 deletions

View File

@ -818,15 +818,11 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
*
* @throws SmackException if the parser could not be reset.
* @throws InterruptedException
* @throws XmlPullParserException
*/
void openStream() throws SmackException, InterruptedException {
void openStream() throws SmackException, InterruptedException, XmlPullParserException {
sendStreamOpen();
try {
packetReader.parser = PacketParserUtils.newXmppParser(reader);
}
catch (XmlPullParserException e) {
throw new SmackException(e);
}
packetReader.parser = PacketParserUtils.newXmppParser(reader);
}
protected class PacketReader {