Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ScriptException.cs
1using System;
2
4{
8 public class ScriptException : Exception
9 {
14 public ScriptException(string Message)
15 : base(Message)
16 {
17 }
18
24 public ScriptException(string Message, Exception InnerException)
25 : base(Message, InnerException)
26 {
27 }
28 }
29}
Base class for script exceptions.
ScriptException(string Message)
Base class for script exceptions.
ScriptException(string Message, Exception InnerException)
Base class for script exceptions.