smack-xmlparser: Improve ISE message

Cette révision appartient à :
Florian Schmaus 2019-09-23 15:18:06 +02:00
Parent 28ef30b4b3
révision be0830fc8f
1 fichiers modifiés avec 2 ajouts et 1 suppressions

Voir le fichier

@ -31,7 +31,8 @@ public class SmackXmlParser {
public static XmlPullParserFactory getXmlPullParserFactory() {
Iterator<XmlPullParserFactory> iterator = xmlPullParserFactoryServiceLoader.iterator();
if (!iterator.hasNext()) {
throw new IllegalStateException("Could not load a XmlPullParserFactory via Service Provider Interface (SPI)");
throw new IllegalStateException(
"No XmlPullParserFactory registered with Service Provider Interface (SPI). Is smack-xmlparser-xpp3 or smack-xmlparser-stax in classpath?");
}
return iterator.next();
}