1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-12-09 20:41:07 +01:00

[carbons] Throw SmackParsingException instead of IOException

This commit is contained in:
Florian Schmaus 2020-09-23 17:23:33 +02:00
parent 02341f6330
commit c1b32f8e11
2 changed files with 3 additions and 4 deletions

View file

@ -55,8 +55,7 @@ public class CarbonManagerProvider extends ExtensionElementProvider<CarbonExtens
done = true;
}
if (fwd == null) {
// TODO: Should be SmackParseException.
throw new IOException("sent/received must contain exactly one <forwarded> tag");
throw new SmackParsingException("sent/received must contain exactly one <forwarded/> element");
}
return new CarbonExtension(dir, fwd);
}