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.
void
1 parent 929fc8e commit 35ed1efCopy full SHA for 35ed1ef
1 file changed
src/AddIns/Debugger/Debugger.Core/Eval.cs
@@ -78,7 +78,7 @@ public Value Result {
78
case EvalState.Evaluating: throw new GetValueException("Evaluating...");
79
case EvalState.EvaluatedSuccessfully: return result;
80
case EvalState.EvaluatedException: return result;
81
- case EvalState.EvaluatedNoResult: throw new DebuggerException("Evaluation did not return any value.");
+ case EvalState.EvaluatedNoResult: throw new GetValueException("no result");
82
case EvalState.EvaluatedTimeOut: throw new GetValueException("Timeout");
83
default: throw new DebuggerException("Unknown state");
84
}
0 commit comments