* @todo Consider moving this class to the Utils class.
*/
static void assertNotLessThanEqualTo (
String param, int target, int actual) {
if (actual <= target)
throw new InvalidParameterValueException("The value of the " +
"parameter named '" + param + "' is " + actual + " and this " +
"is less than or equal to the expected target value of " +
target);
}