Browse Source

catch更改

master
vito 8 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());
process.process(PERCENT_100 / pluginIDs.length * (i + 1) + "%");
} catch (PluginVerifyException e) {
throw e;
} catch (Exception e) {
if (e instanceof PluginVerifyException) {
throw (PluginVerifyException) e;
}
FRContext.getLogger().error(e.getMessage());
FRContext.getLogger().error(e.getMessage(), e);
}
}
int rv = JOptionPane.showOptionDialog(

Loading…
Cancel
Save