Catch all exception types
authorMathieu Baudier <mbaudier@argeo.org>
Thu, 19 Jan 2012 15:02:57 +0000 (15:02 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Thu, 19 Jan 2012 15:02:57 +0000 (15:02 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@4984 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/osgi/OsgiLaunchHelper.java

index 4128a8a33eac4d6d94ceb444114ade7f98421899..6f54e64d120536b2c40e63f2461f68ff05c9eb35 100644 (file)
@@ -435,7 +435,7 @@ public class OsgiLaunchHelper implements OsgiLauncherConstants {
                try {
                        in = file.getContents();
                        props.load(in);
-               } catch (IOException e) {
+               } catch (Exception e) {
                        throw new CoreException(new Status(IStatus.ERROR,
                                        SlcIdeUiPlugin.ID, "Cannot read properties file", e));
                } finally {