Changeset 2984 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2010-02-14T15:32:58+01:00 (14 years ago)
Author:
jttt
Message:

Fix #4524 Exception handling in PleaseWaitRunnable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/ExceptionDialogUtil.java

    r2895 r2984  
    8686    public static void explainGeneric(Exception e) {
    8787        e.printStackTrace();
    88         HelpAwareOptionPane.showOptionDialog(
    89                 Main.parent,
    90                 ExceptionUtil.explainGeneric(e),
    91                 tr("Error"),
    92                 JOptionPane.ERROR_MESSAGE,
    93                 ht("/ErrorMessages#GenericException")
    94         );
     88        BugReportExceptionHandler.handleException(e);
    9589    }
    9690
Note: See TracChangeset for help on using the changeset viewer.