Hardware/TBalancer/TBalancerGroup.cs
changeset 51 e5fc5fd57dbe
parent 47 1d02fde1bb23
child 87 ecdc3bcef083
     1.1 --- a/Hardware/TBalancer/TBalancerGroup.cs	Wed Feb 17 20:45:31 2010 +0000
     1.2 +++ b/Hardware/TBalancer/TBalancerGroup.cs	Thu Feb 18 14:03:02 2010 +0000
     1.3 @@ -119,11 +119,9 @@
     1.4              hardware.Add(new TBalancer(portNames[i], protocolVersion));
     1.5              return;
     1.6            }
     1.7 -        } catch (IOException ioe) {
     1.8 -          report.AppendLine(ioe.ToString());
     1.9 -        } catch (NullReferenceException ne) {
    1.10 -          report.AppendLine(ne.ToString());
    1.11 -        }
    1.12 +        } catch (Exception e) {
    1.13 +          report.AppendLine(e.ToString());
    1.14 +        } 
    1.15          report.AppendLine();
    1.16        }
    1.17      }