Commit bbd1ffd7 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Modified to catch all Throwables (e.g ClassFormatError). JM-593

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3544 b35dd754-fafc-0310-a699-88a17e54d16e
parent e31c44c3
......@@ -16,19 +16,19 @@ import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
import org.jivesoftware.admin.AdminConsole;
import org.jivesoftware.wildfire.XMPPServer;
import org.jivesoftware.util.Log;
import org.jivesoftware.util.Version;
import org.jivesoftware.wildfire.XMPPServer;
import java.io.File;
import java.io.FileFilter;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.ConcurrentHashMap;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.zip.ZipFile;
......@@ -659,7 +659,7 @@ public class PluginManager {
}
}
}
catch (Exception e) {
catch (Throwable e) {
Log.error(e);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment