1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-12 10:45:37 +02:00

If the CDI backend fails when getting the value for a variable put the error message in place of the value string so the user will have some idea what happened.

This commit is contained in:
Ken Ryall 2007-03-29 19:07:47 +00:00
parent 35ec1e3650
commit 0aa91682cd

View file

@ -98,6 +98,7 @@ public class CValue extends AbstractCValue {
}
catch( CDIException e ) {
setStatus( ICDebugElementStatus.ERROR, e.getMessage() );
fValueString = e.getLocalizedMessage();
}
}
}