/**
* @todo Move this method to the parent package.
*/
static void assertNotNullOrEmpty (String variableName, Object[] values) {
if (values == null || values.length == 0)
throw new InvalidParameterValue ("The variable named '" +
variableName + "' is either null or empty (" +
ToStringBuilder.reflectionToString(values) + ").");
}