Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ScriptAbortedException.cs
1using System;
2
4{
9 {
14 : this("Script evaluation aborted.")
15 {
16 }
17
22 public ScriptAbortedException(string Message)
23 : base(Message)
24 {
25 }
26
32 public ScriptAbortedException(string Message, Exception InnerException)
33 : base(Message, InnerException)
34 {
35 }
36
37 }
38}
Exception thrown when a script has been aborted.
ScriptAbortedException(string Message, Exception InnerException)
Exception thrown when a script has been aborted.
ScriptAbortedException()
Exception thrown when a script has been aborted.
ScriptAbortedException(string Message)
Exception thrown when a script has been aborted.
Base class for script exceptions.