throw new ValidationException("The value of the variable " + getVariableName() + " can not be empty!");
}
if (this.isPath()) {
if (EnvironmentUtils.isCygwin()) {
result = new CygwinFileValue(stringValue);
} else {
result = new FileValue(stringValue);
}
} else {
return new VariableValue(stringValue);