1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-01 21:35:40 +02:00

Throws the exception up instead of silently ignore it.

This commit is contained in:
Alain Magloire 2004-01-28 20:50:39 +00:00
parent 6dbe39d0d0
commit 8d6cbf9b4b

View file

@ -50,7 +50,7 @@ public class Value extends CObject implements ICDIValue {
} }
result = info.getValue(); result = info.getValue();
} catch (MIException e) { } catch (MIException e) {
//throw new CDIException(e.getMessage()); throw new CDIException(e.getMessage());
} }
return result; return result;
} }