* the SCMP validator exception
*/
public static void validateLong(long lowerLimitInc, String longStringValue, long upperLimitInc, SCMPError error)
throws SCMPValidatorException {
if (longStringValue == null) {
throw new SCMPValidatorException(error, "Numeric value is missing");
}
long longValue = 0;
try {
longValue = Long.parseLong(longStringValue);
} catch (NumberFormatException ex) {
throw new SCMPValidatorException(error, "LongValue=" + longStringValue + " must be numeric");
}
ValidatorUtility.validateLong(lowerLimitInc, longValue, upperLimitInc, error);
}