We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376cf8d commit e9549daCopy full SHA for e9549da
src/lang/cpp/internal/Parser.java
@@ -393,6 +393,9 @@ public boolean isTracing() {
393
return result;
394
} catch (CoreException e) {
395
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);
399
}
400
401
0 commit comments