Ignore:
Timestamp:
2012-11-03T19:58:09+01:00 (12 years ago)
Author:
donvip
Message:

[josm_opendata] Robustness to modules initialization failure (required to update them through the plugin preferences)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/AbstractModule.java

    r28143 r28896  
    133133                                try {
    134134                                        result.add(handlerClass.newInstance());
    135                                 } catch (InstantiationException e) {
    136                                         System.err.println(e.getMessage());
    137                                 } catch (IllegalAccessException e) {
    138                                         System.err.println(e.getMessage());
     135                                } catch (Throwable t) {
     136                                        System.err.println(t.getClass().getName()+": "+t.getMessage());
    139137                                }
    140138                        }
Note: See TracChangeset for help on using the changeset viewer.