Definition at line 6 of file ExecutionException.cs.
◆ ExecutionException() [1/3]
| ScriptStack.Runtime.ExecutionException.ExecutionException |
( |
| ) |
|
◆ ExecutionException() [2/3]
| ScriptStack.Runtime.ExecutionException.ExecutionException |
( |
string | strMessage, |
|
|
[CallerMemberName] string | caller = "", |
|
|
[CallerFilePath] string | file = "", |
|
|
[CallerLineNumber] int | line = 0 ) |
Definition at line 13 of file ExecutionException.cs.
18 : base($"{strMessage} (Caller: {caller}, {System.IO.Path.GetFileName(file)}:{line})")
19 {
20 }
◆ ExecutionException() [3/3]
| ScriptStack.Runtime.ExecutionException.ExecutionException |
( |
string | strMessage, |
|
|
Exception | exceptionInner, |
|
|
[CallerMemberName] string | caller = "", |
|
|
[CallerFilePath] string | file = "", |
|
|
[CallerLineNumber] int | line = 0 ) |
Definition at line 22 of file ExecutionException.cs.
28 : base($"{strMessage} (Caller: {caller}, {System.IO.Path.GetFileName(file)}:{line})", exceptionInner)
29 {
30 }
The documentation for this class was generated from the following file: