Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.PluginInfrastructure/3.3/Advanced/InstallationManager.cs

    r14185 r14927  
    5454        client.Close();
    5555        return plugins;
    56       }
    57       catch (TimeoutException e) {
     56      } catch (TimeoutException e) {
    5857        client.Abort();
    5958        throw new InstallationManagerException("Time out while connecting to server.", e);
    60       }
    61       catch (FaultException e) {
     59      } catch (FaultException e) {
    6260        client.Abort();
    6361        throw new InstallationManagerException("Fault in connection to server.", e);
    64       }
    65       catch (CommunicationException e) {
     62      } catch (CommunicationException e) {
    6663        client.Abort();
    6764        throw new InstallationManagerException("General communication exception in connection to server.", e);
     
    7976        client.Close();
    8077        return products;
    81       }
    82       catch (TimeoutException e) {
     78      } catch (TimeoutException e) {
    8379        client.Abort();
    8480        throw new InstallationManagerException("Time out while connecting to server.", e);
    85       }
    86       catch (FaultException e) {
     81      } catch (FaultException e) {
    8782        client.Abort();
    8883        throw new InstallationManagerException("Fault in connection to server.", e);
    89       }
    90       catch (CommunicationException e) {
     84      } catch (CommunicationException e) {
    9185        client.Abort();
    9286        throw new InstallationManagerException("General communication exception in connection to server.", e);
     
    111105          }
    112106          client.Close();
    113         }
    114         catch (TimeoutException e) {
     107        } catch (TimeoutException e) {
    115108          client.Abort();
    116109          throw new InstallationManagerException("Time out while connecting to server.", e);
    117         }
    118         catch (FaultException e) {
     110        } catch (FaultException e) {
    119111          client.Abort();
    120112          throw new InstallationManagerException("Fault in connection to server.", e);
    121         }
    122         catch (CommunicationException e) {
     113        } catch (CommunicationException e) {
    123114          client.Abort();
    124115          throw new InstallationManagerException("General communication exception in connection to server.", e);
     
    146137          }
    147138          client.Close();
    148         }
    149         catch (TimeoutException e) {
     139        } catch (TimeoutException e) {
    150140          client.Abort();
    151141          throw new InstallationManagerException("Time out while connecting to server.", e);
    152         }
    153         catch (FaultException e) {
     142        } catch (FaultException e) {
    154143          client.Abort();
    155144          throw new InstallationManagerException("Fault in connection to server.", e);
    156         }
    157         catch (CommunicationException e) {
     145        } catch (CommunicationException e) {
    158146          client.Abort();
    159147          throw new InstallationManagerException("General communication exception in connection to server.", e);
Note: See TracChangeset for help on using the changeset viewer.