*/
private void applyCopyingRules(CopierData data) {
String rules = ConfigMain.getParameter("copyData.onCatalogueQuery");
if (rules != null && !rules.equals("- keine Konfiguration gefunden -")) {
try {
new DataCopier(rules).process(data);
} catch (ConfigurationException e) {
Helper.setFehlerMeldung("dataCopier.syntaxError", e.getMessage());
} catch (RuntimeException exception) {
if (RuntimeException.class.equals(exception.getClass())) {
Helper.setFehlerMeldung("dataCopier.runtimeException", exception.getMessage());