source: josm/trunk/src/org/openstreetmap/josm/plugins/PluginListParseException.java@ 2876

Last change on this file since 2876 was 2817, checked in by Gubaer, 14 years ago

fixed #3063: Downloading a plugin yields 3 dialogs at the same time: Downloading plugin / You should restart JOSM / Plugin downloaded
fixed #3628: JOSM blocking itself updating broken plugin
fixed #4187: JOSM deleted random files from disk after start (data loss)
fixed #4199: new version - plugins update vs josm start [should be fixed. Be careful if you have two JOSM instances running. Auto-update of plugins in the second instance will fail because plugin files are locked by the first instance]
fixed #4034: JOSM should auto-download plugin list when it hasn't been downloaded before [JOSM now displays a hint]

fixed: splash screen showing again even if plugins are auto-updated
new: progress indication integrated in splash screen
new: cancelable, asynchronous download of plugins from preferences
new: cancelable, asynchronous download of plugin list from plugin download sites
new: asynchronous loading of plugin information, launch of preferences dialog accelerated
refactored: clean up, documentation of plugin management code (PluginHandler)

File size: 494 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.plugins;
3
4public class PluginListParseException extends Exception {
5 public PluginListParseException() {
6 super();
7 }
8
9 public PluginListParseException(String arg0, Throwable arg1) {
10 super(arg0, arg1);
11 }
12
13 public PluginListParseException(String arg0) {
14 super(arg0);
15 }
16
17 public PluginListParseException(Throwable arg0) {
18 super(arg0);
19 }
20}
Note: See TracBrowser for help on using the repository browser.