* Throws exception if the <code>length</code> provided isn't between
* provided <code>min</code> and <code>max</code> inclusive.
*/
protected static void checkLength(int min, int max, int length) throws WrongLengthException {
if ((length < min) || (length > max)) {
throw new WrongLengthException(min, max, length);
}
}