SteamWar/SpigotCore
Archiviert
13
0

Fix UserConfig.getConfig

Dieser Commit ist enthalten in:
yoyosource 2021-05-12 20:40:49 +02:00
Ursprung c62c2990c0
Commit 38155f5345

Datei anzeigen

@ -47,7 +47,7 @@ public class UserConfig {
} }
return config.getString("Value"); return config.getString("Value");
} catch (SQLException e) { } catch (SQLException e) {
throw new SecurityException(); throw new SecurityException(e.getMessage(), e);
} }
} }