Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/13/12 16:01:39 (13 years ago)
Author:
spimming
Message:

#1680:

  • New model classes
  • New service operation methods added
  • License information added
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Azure/ServiceWebRequest.cs

    r7299 r7326  
    165165      catch (Exception e) {
    166166        if (e is CryptographicException)
    167           Debug.WriteLine("Error: The sotre is unreadable.");
     167          throw new SystemException("Error: The certificate store is unreadable.");
    168168        else if (e is SecurityException)
    169           Debug.WriteLine("Error: You don't have the required permission.");
     169          throw new SystemException("Error: You don't have the required permission.");
    170170        else if (e is ArgumentException)
    171           Debug.WriteLine("Error: Invalid values in the store.");
     171          throw new SystemException("Error: Invalid values in the certificate store.");
    172172        else
    173           throw;
     173          throw new SystemException(e.Message, e);
    174174      }
    175175      finally {
Note: See TracChangeset for help on using the changeset viewer.