1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-13 12:05:21 +02:00

throws the exception up instead of silently ignore it.

This commit is contained in:
Alain Magloire 2004-01-28 20:51:43 +00:00
parent 60e0d1957f
commit cbf543e5ae

View file

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