private string ValidateName(string name) { if (string.IsNullOrEmpty(name)) { throw UserException.InvalidNameException(name); } return(name); }