Skip to content

Commit

Permalink
REL-3609: wording change in error message (#1635)
Browse files Browse the repository at this point in the history
  • Loading branch information
swalker2m authored Feb 21, 2019
1 parent 9c8965d commit 3cfec27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public HttpTooUpdate(HttpServletRequest req) throws BadRequestException {
try {
expTime = Duration.ofSeconds(Integer.parseInt(expTimeString));
} catch (NumberFormatException ex) {
throw new BadRequestException("cannot parse " + EXPOSURE_TIME_PARAM + " value `" + expTimeString + "` as an integral number of seconds");
throw new BadRequestException("cannot parse " + EXPOSURE_TIME_PARAM + " value `" + expTimeString + "` as an integer number of seconds");
}

if (expTime.compareTo(MIN_EXPOSURE_TIME) < 0) {
Expand Down

0 comments on commit 3cfec27

Please sign in to comment.