Style: Line length

This commit is contained in:
Lars Simon Winzer
2026-03-30 13:27:59 +02:00
parent cb6c9cb339
commit f467b2861f
@@ -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);
}
}