Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
VariableNotFoundScriptException.cs
2
4{
9 {
16 : base("Variable not found: " + VariableName, Node)
17 {
18 this.VariableName = VariableName;
19 }
20
24 public string VariableName { get; }
25 }
26}
ScriptNode Node
Node where error occurred.
VariableNotFoundScriptException(string VariableName, ScriptNode Node)
Exception thrown if a variable is not found.
Base class for all nodes in a parsed script tree.
Definition: ScriptNode.cs:69