Merge branch 'chore/21-fix-style' into 'main'

Fix line length code quality issue from !52

See merge request cs108-fs26/Gruppe-13!53
This commit was merged in pull request #209.
This commit is contained in:
Lars Simon Winzer
2026-03-30 13:31:35 +02:00
@@ -56,7 +56,8 @@ public class RequestParameterAccessor {
try {
return parser.parse(value);
} catch (Exception e) {
throw new ParameterParseException("Error while parsing '" + key + "' with specified parser", key, e);
throw new ParameterParseException(
"Error while parsing '" + key + "' with specified parser", key, e);
}
}
@@ -95,7 +96,8 @@ public class RequestParameterAccessor {
try {
return parser.parse(value);
} catch (Exception e) {
throw new ParameterParseException("Error while parsing '" + key + "' with specified parser", key, e);
throw new ParameterParseException(
"Error while parsing '" + key + "' with specified parser", key, e);
}
}