- Timestamp:
- 2006-02-09T19:50:24+01:00 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/gui/BugReportExceptionHandler.java
r44 r48 28 28 public void uncaughtException(Thread t, Throwable e) { 29 29 e.printStackTrace(); 30 if (Main.main == null) 31 e.printStackTrace(); 32 else { 30 if (Main.main != null) { 33 31 Object[] options = new String[]{"Do nothing", "Report Bug"}; 34 32 int answer = JOptionPane.showOptionDialog(Main.main, "An unexpected exception occoured.\n\n" +
Note:
See TracChangeset
for help on using the changeset viewer.