public void removeSectionGlobal(String key) {
try {
global.removeSection(key);
} catch (NoSuchElementException e) {
throw new ConfigException(e, StatusCode.MISSING_SECTION);
} catch (StringIndexOutOfBoundsException e) {
throw new ConfigException(e, StatusCode.SECTION_OR_KEY_INVALID);
} catch (IllegalArgumentException e) {
throw new ConfigException(e, null);
} catch (IOException e) {
throw new ConfigException(e, null);
}
}