From f815a6f7d2dfc23488ad5c3057be57157deccc11 Mon Sep 17 00:00:00 2001
From: OZGCloud <ozgcloud@mgm-tp.com>
Date: Wed, 17 Apr 2024 13:50:25 +0200
Subject: [PATCH] OZG-5387 adjust exception factory constructor

---
 .../formcycle/errorhandling/NodeThrewExceptionFactory.java    | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/main/java/de/ozgcloud/formcycle/errorhandling/NodeThrewExceptionFactory.java b/src/main/java/de/ozgcloud/formcycle/errorhandling/NodeThrewExceptionFactory.java
index 956f7eb..2599b53 100644
--- a/src/main/java/de/ozgcloud/formcycle/errorhandling/NodeThrewExceptionFactory.java
+++ b/src/main/java/de/ozgcloud/formcycle/errorhandling/NodeThrewExceptionFactory.java
@@ -12,18 +12,16 @@ import de.ozgcloud.formcycle.OzgCloudConfig;
 import de.ozgcloud.formcycle.OzgCloudPlugin;
 import de.xima.fc.exceptions.NodeThrewException;
 import de.xima.fc.interfaces.workflow.params.INodeThrewExceptionBuilder;
-import lombok.AllArgsConstructor;
 import lombok.RequiredArgsConstructor;
 
 @RequiredArgsConstructor
-@AllArgsConstructor
 public class NodeThrewExceptionFactory {
 
 	public static final String KEY_EXCEPTION_ID = "exceptionId";
 
 	private final INodeThrewExceptionBuilder exceptionBuilder;
 	private final String pluginVersion;
-	private OzgCloudConfig pluginConfig;
+	private final OzgCloudConfig pluginConfig;
 
 	public NodeThrewException createInternalException(TechnicalException e) {
 		return exceptionBuilder
-- 
GitLab