* @throws PropertyException If the input value is not a valid length.
*/
public void setLengthMinimum(final PropertyValue lengthMinimum)
throws PropertyException {
if (! lengthMinimum.canEvalLength()) {
throw new PropertyException("Invalid length for minimum in "
+ this.getClass().getName());
}
this.lengthMinimum = lengthMinimum;
}