Changeset 7326 for branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Azure/ServiceWebRequest.cs
- Timestamp:
- 01/13/12 16:01:39 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Azure/ServiceWebRequest.cs
r7299 r7326 165 165 catch (Exception e) { 166 166 if (e is CryptographicException) 167 Debug.WriteLine("Error: The sotre is unreadable.");167 throw new SystemException("Error: The certificate store is unreadable."); 168 168 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."); 170 170 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."); 172 172 else 173 throw ;173 throw new SystemException(e.Message, e); 174 174 } 175 175 finally {
Note: See TracChangeset
for help on using the changeset viewer.