diff options
Diffstat (limited to 'java/src/IceGridGUI/LiveDeployment/GraphView.java')
-rw-r--r-- | java/src/IceGridGUI/LiveDeployment/GraphView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/GraphView.java b/java/src/IceGridGUI/LiveDeployment/GraphView.java index 19005db7458..1b6b75e9bbb 100644 --- a/java/src/IceGridGUI/LiveDeployment/GraphView.java +++ b/java/src/IceGridGUI/LiveDeployment/GraphView.java @@ -348,7 +348,8 @@ public class GraphView extends JFrame implements MetricsFieldContext } }, false); if(!(e instanceof Ice.ObjectNotExistException) && - !(e instanceof Ice.CommunicatorDestroyedException)) + !(e instanceof Ice.CommunicatorDestroyedException) && + !(e instanceof Ice.ConnectionRefusedException)) { handleError(m, e.toString()); } |