1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-10 18:59:41 +02:00

Add support for XEP-335: JSON Containers

and GCM JSON payloads for Google's GCM Cloud Connection Server.
This commit is contained in:
Florian Schmaus 2014-10-29 23:47:47 +01:00
parent ed66c838e1
commit e63fe22647
9 changed files with 271 additions and 0 deletions

View file

@ -125,6 +125,10 @@ public class ProviderFileLoader implements ProviderLoader {
LOGGER.log(Level.SEVERE, "Could not find provider class", cnfe);
exceptions.add(cnfe);
}
catch (InstantiationException ie) {
LOGGER.log(Level.SEVERE, "Could not instanciate " + className, ie);
exceptions.add(ie);
}
}
}
catch (IllegalArgumentException illExc) {