Browse Source

Propagate exceptions sanely.

pull/625/head
Chris Smith 8 years ago
parent
commit
8e701d9b8a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/util/LogUtils.java

+ 1
- 1
src/com/dmdirc/util/LogUtils.java View File

@@ -87,7 +87,7 @@ public final class LogUtils {
87 87
         try {
88 88
             return getThrowable(eventObject.getThrowableProxy());
89 89
         } catch (ReflectiveOperationException ex) {
90
-            return new IllegalStateException("Error converting exception");
90
+            return new IllegalStateException("Error converting exception", ex);
91 91
         }
92 92
     }
93 93
 

Loading…
Cancel
Save