mirror of
https://github.com/essentials/Essentials.git
synced 2025-02-24 08:22:56 +01:00
Better error report on malformed GlobalGroups.
This commit is contained in:
parent
bedc95d69b
commit
72d98b2f67
@ -161,7 +161,11 @@ public class GlobalGroups {
|
||||
Object element;
|
||||
|
||||
// Permission nodes
|
||||
element = ((Map<String, Object>)allGroups.get(groupName)).get("permissions");
|
||||
try {
|
||||
element = ((Map<String, Object>)allGroups.get(groupName)).get("permissions");
|
||||
} catch ( Exception ex) {
|
||||
throw new IllegalArgumentException("The GlobalGroup ' " + groupName + "' is formatted incorrectly: ", ex);
|
||||
}
|
||||
|
||||
if (element != null)
|
||||
if (element instanceof List) {
|
||||
@ -180,7 +184,11 @@ public class GlobalGroups {
|
||||
throw new IllegalArgumentException("Unknown type of permission node for global group: " + groupName);
|
||||
|
||||
// Info nodes
|
||||
element = ((Map<String, Object>)allGroups.get(groupName)).get("info");
|
||||
try {
|
||||
element = ((Map<String, Object>)allGroups.get(groupName)).get("info");
|
||||
} catch ( Exception ex) {
|
||||
throw new IllegalArgumentException("The GlobalGroup ' " + groupName + "' is formatted incorrectly: ", ex);
|
||||
}
|
||||
|
||||
if (element != null)
|
||||
if (element instanceof MemorySection) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user