Fix line length code quality issue from !52 #209

Merged
lars.winzer merged 1 commits from chore/21-fix-style into main 2026-03-30 13:31:36 +02:00
Showing only changes of commit f467b2861f - Show all commits
@@ -56,7 +56,8 @@ public class RequestParameterAccessor {
try { try {
return parser.parse(value); return parser.parse(value);
} catch (Exception e) { } 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 { try {
return parser.parse(value); return parser.parse(value);
} catch (Exception e) { } 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);
} }
} }