else if (snapshot == null)
{
throw new SerializerException(SerializerException.FILE_PROCESSING_ERROR.create(new String[] { filename, "Snapshot is NULL" }));
}
if (!(snapshot.checkVersion()))
throw new SerializerException(SerializerException.INCOMPETIBLE_VERSION.create(new String[] { filename,
String.valueOf(snapshot.getSoftwareVersion()), String.valueOf(snapshot.getSavedSubversion()) }));
for (int i = 0, size = serializers.size(); i < size; i++)
{
((JetspeedComponentSerializer) serializers.get(i)).processImport(snapshot, processSettings);