public AdminOrganization GetSystemAdminOrg()
 {
     try
     {
         if (this._systemAdminOrgReference == null)
         {
             throw new VCloudException(SdkUtil.GetI18nString(SdkMessage.REFERENCE_NOT_FOUND_MSG));
         }
         return(AdminOrganization.GetAdminOrgByReference(this._client, this._systemAdminOrgReference));
     }
     catch (Exception ex)
     {
         throw new VCloudException(ex.Message);
     }
 }