-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathExecutionResult.cs
55 lines (45 loc) · 890 Bytes
/
ExecutionResult.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
namespace AudioSwitcher.Scripting
{
public class ExecutionResult
{
public bool Success
{
get;
set;
}
public ExecutionException ExecutionException
{
get;
set;
}
}
public sealed class ExecutionResult<T> : ExecutionResult
{
public ExecutionResult()
{
}
public ExecutionResult(T value)
{
Value = value;
}
public T Value
{
get;
set;
}
}
[Serializable]
public class ExecutionException : Exception
{
public int LineNumber
{
get;
set;
}
public ExecutionException(Exception innerException)
: base(innerException.Message, innerException)
{
}
}
}