this.setComplexParameter(element.getName().substring(prefixLength).toUpperCase(), value);
}
} catch (final IllegalArgumentException ex) {
if (GlobalSettings.logActive)
new LogEngine().logMessage(ex.getStackTrace().toString(), GlobalSettings.logPath, "ERROR");
throw new RuntimeException(ex);
} catch (final InvocationTargetException ex) {
if (GlobalSettings.logActive)
new LogEngine().logMessage(ex.getStackTrace().toString(), GlobalSettings.logPath, "ERROR");
throw new RuntimeException(ex);
} catch (final IllegalAccessException ex) {
if (GlobalSettings.logActive)
new LogEngine().logMessage(ex.getStackTrace().toString(), GlobalSettings.logPath, "ERROR");
throw new RuntimeException(ex);
}
}
}