Fix exception => throwable in catch while loading plugins

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot 2010-12-24 17:25:07 +00:00
parent 0503a134ba
commit 529268213b
2 changed files with 3 additions and 2 deletions

View file

@ -3,3 +3,4 @@
/nbproject
/build.xml
/manifest.mf
/dist

View file

@ -41,7 +41,7 @@ public final class JavaPluginLoader implements PluginLoader {
Constructor<? extends JavaPlugin> constructor = plugin.getConstructor(PluginLoader.class, Server.class, PluginDescriptionFile.class, File.class, ClassLoader.class);
result = constructor.newInstance(this, server, description, file, loader);
} catch (Exception ex) {
} catch (Throwable ex) {
throw new InvalidPluginException(ex);
}