Changeset 15221 in josm
- Timestamp:
- 2019-07-07T14:17:28+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java
r15187 r15221 23 23 import java.util.jar.JarInputStream; 24 24 import java.util.jar.Manifest; 25 import java.util.logging.Level; 25 26 26 27 import javax.swing.ImageIcon; … … 383 384 return Class.forName(className, true, classLoader); 384 385 } catch (NoClassDefFoundError | ClassNotFoundException | ClassCastException e) { 386 Logging.logWithStackTrace(Level.SEVERE, e, 387 "Unable to load class {0} from plugin {1} using classloader {2}", className, name, classLoader); 385 388 throw new PluginException(name, e); 386 389 }
Note:
See TracChangeset
for help on using the changeset viewer.