mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 03:52:06 +01:00
Do not wrap XmlPullParser exception in openStream()
This commit is contained in:
parent
7dee3b88a2
commit
b7d6edcd1e
1 changed files with 3 additions and 7 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue