Add IllegalArgumentException to parsing exceptions

As it is thrown by many Element constructors.
This commit is contained in:
Florian Schmaus 2019-08-27 09:00:22 +02:00
parent 944dd71976
commit 851bd3c5dd
1 changed files with 1 additions and 1 deletions

View File

@ -1256,7 +1256,7 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
try {
stanza = PacketParserUtils.parseStanza(parser, incomingStreamXmlEnvironment);
}
catch (XmlPullParserException | SmackParsingException | IOException e) {
catch (XmlPullParserException | SmackParsingException | IOException | IllegalArgumentException e) {
CharSequence content = PacketParserUtils.parseContentDepth(parser,
parserDepth);
UnparseableStanza message = new UnparseableStanza(content, e);