3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-17 05:20:14 +01:00

Broaden a catch clause so Java Errors while loading plugins don't halt the proxy.

Dieser Commit ist enthalten in:
Andrew Steinborn 2018-08-26 14:40:07 -04:00
Ursprung 27288685ff
Commit ffd6217170

Datei anzeigen

@ -76,7 +76,7 @@ public class VelocityPluginManager implements PluginManager {
try {
pluginObject = loader.createPlugin(plugin);
} catch (Exception e) {
} catch (Throwable e) {
logger.error("Can't create plugin {}", plugin.getId(), e);
continue;
}