Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ArgumentOutOfRangeScriptException.cs
2
4{
9 {
16 public ArgumentOutOfRangeScriptException(string Name, string Message, ScriptNode Node)
17 : base(Message, Node)
18 {
19 this.Name = Name;
20 }
21
25 public string Name { get; }
26 }
27}
ArgumentOutOfRangeScriptException(string Name, string Message, ScriptNode Node)
Exception thrown if an operand is out of bounds.
ScriptNode Node
Node where error occurred.
Base class for all nodes in a parsed script tree.
Definition: ScriptNode.cs:69