* @param exactVersion
* @return VersionRange object.
* @throws IllegalArgumentException if the String could not be parsed as a VersionRange
*/
public static VersionRange parseVersionRange(String s, boolean exactVersion) throws IllegalArgumentException{
return new VersionRangeImpl(s, exactVersion);
}