sebbASF commented on code in PR #271:
URL: https://github.com/apache/commons-validator/pull/271#discussion_r1793783001


##########
src/main/java/org/apache/commons/validator/routines/checkdigit/CheckDigitException.java:
##########
@@ -25,6 +25,16 @@ public class CheckDigitException extends Exception {
 
     private static final long serialVersionUID = -3519894732624685477L;
 
+    /**
+     * Common message text when code is Null or empty
+     */
+    public static final String MISSING_CODE = "Code is missing";
+
+    /**
+     * Common message text when code sum is zero
+     */
+    public static final String ZREO_SUM = "Invalid code, sum is zero";
+

Review Comment:
   Speling



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to