checkstyle correction (line length)

Former-commit-id: 9dd3434ff9ed9e45d547a9179bb7880fdb29b055
This commit is contained in:
Jeremy Long
2014-01-25 11:04:20 -05:00
parent be3fa7b940
commit 696c7d0e21

View File

@@ -94,7 +94,8 @@ public final class CliParser {
try {
Format.valueOf(format);
} catch (IllegalArgumentException ex) {
final String msg = String.format("An invalid 'format' of '%s' was specified. Supported output formats are XML, HTML, VULN, or ALL", format);
final String msg = String.format("An invalid 'format' of '%s' was specified. "
+ "Supported output formats are XML, HTML, VULN, or ALL", format);
throw new ParseException(msg);
}
}