From 3cfec27ac539af13d6f5fd5eaa914c537d5674e1 Mon Sep 17 00:00:00 2001 From: Shane Walker Date: Thu, 21 Feb 2019 10:42:09 -0300 Subject: [PATCH] REL-3609: wording change in error message (#1635) --- .../main/java/edu/gemini/spdb/rapidtoo/www/HttpTooUpdate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/edu.gemini.oodb.too.url/src/main/java/edu/gemini/spdb/rapidtoo/www/HttpTooUpdate.java b/bundle/edu.gemini.oodb.too.url/src/main/java/edu/gemini/spdb/rapidtoo/www/HttpTooUpdate.java index 34a0e09289..f053e9d028 100644 --- a/bundle/edu.gemini.oodb.too.url/src/main/java/edu/gemini/spdb/rapidtoo/www/HttpTooUpdate.java +++ b/bundle/edu.gemini.oodb.too.url/src/main/java/edu/gemini/spdb/rapidtoo/www/HttpTooUpdate.java @@ -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) {