Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ScriptRuntimeErrorException.cs
1using System;
3
5{
10 {
17 : base(Message, Node, true)
18 {
19 }
20
27 public ScriptRuntimeErrorException(string Message, ScriptNode Node, Exception InnerErrorException)
28 : base(Message, Node, InnerErrorException, true)
29 {
30 }
31 }
32}
ScriptRuntimeErrorException(string Message, ScriptNode Node)
Script runtime error exception.
ScriptRuntimeErrorException(string Message, ScriptNode Node, Exception InnerErrorException)
Script runtime exception.
ScriptNode Node
Node where error occurred.
Base class for all nodes in a parsed script tree.
Definition: ScriptNode.cs:69