# HG changeset patch # User Ed Swartz # Date 1263310670 21600 # Node ID 218edd9d77f10cefdb40477cfca68969148db3c2 # Parent 417baed711a72388ace69bbcdccb300056572f35 Catch any exception from a discovery agent so it doesn't kill the Remote Connections view diff -r 417baed711a7 -r 218edd9d77f1 connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/RemoteConnectionsActivator.java --- a/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/RemoteConnectionsActivator.java Mon Jan 11 10:07:03 2010 -0600 +++ b/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/RemoteConnectionsActivator.java Tue Jan 12 09:37:50 2010 -0600 @@ -132,7 +132,8 @@ try { ((IDeviceDiscoveryAgent) toTest).start(); return true; - } catch (CoreException e) { + } catch (Throwable e) { + // since we launch arbitrary code, catch any exception to prevent killing the view logError(e); } }