Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
LambdaLengthScriptException.cs
3
5{
10 {
18 : base("Lambda expression must be able to accept complex vectors, " +
19 "and return complex vectors of equal length. Length returned: " +
20 Length.ToString() + ". Expected: " + Expected.ToString(), Node)
21 {
22 this.Length = Length;
23 this.Expected = Expected;
24 }
25
29 public int Length { get; }
30
34 public int Expected { get; }
35 }
36}
ScriptNode Node
Node where error occurred.
Exception thrown if a lambda expression with invalid type is encountered.
LambdaLengthScriptException(int Length, int Expected, ScriptNode Node)
Exception thrown if a lambda expression with invalid type is encountered.
Base class for all nodes in a parsed script tree.
Definition: ScriptNode.cs:69