Browse Source

catch更改

master
vito 9 years ago
parent
commit
c573179143
  1. 7
      designer_base/src/com/fr/design/extra/exe/UpdateOnlineExecutor.java

7
designer_base/src/com/fr/design/extra/exe/UpdateOnlineExecutor.java

@ -65,11 +65,10 @@ public class UpdateOnlineExecutor implements Executor {
}); });
updateFileFromDisk(PluginHelper.getDownloadTempFile()); updateFileFromDisk(PluginHelper.getDownloadTempFile());
process.process(PERCENT_100 / pluginIDs.length * (i + 1) + "%"); process.process(PERCENT_100 / pluginIDs.length * (i + 1) + "%");
} catch (PluginVerifyException e) {
throw e;
} catch (Exception e) { } catch (Exception e) {
if (e instanceof PluginVerifyException) { FRContext.getLogger().error(e.getMessage(), e);
throw (PluginVerifyException) e;
}
FRContext.getLogger().error(e.getMessage());
} }
} }
int rv = JOptionPane.showOptionDialog( int rv = JOptionPane.showOptionDialog(

Loading…
Cancel
Save