homebeaver commented on code in PR #271:
URL: https://github.com/apache/commons-validator/pull/271#discussion_r1795003137
##########
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:
Resolved with commit 547c10ee9023600a3547883a1394c8e7abce303f
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]