Skip to content

Commit e9549da

Browse files
committed
shorter stack traces
1 parent 376cf8d commit e9549da

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/lang/cpp/internal/Parser.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,9 @@ public boolean isTracing() {
393393
return result;
394394
} catch (CoreException e) {
395395
throw RuntimeExceptionFactory.io(vf.string(e.getMessage()), null, null);
396+
} catch (Throwable e) {
397+
// TODO: make more specific
398+
throw RuntimeExceptionFactory.io(vf.string(e.getMessage()), null, null);
396399
}
397400
}
398401

0 commit comments

Comments
 (0)