-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModulightException.cs
More file actions
80 lines (68 loc) · 2.15 KB
/
ModulightException.cs
File metadata and controls
80 lines (68 loc) · 2.15 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
namespace Modulight.Modules
{
/// <summary>
/// Exception in modulight
/// </summary>
[Serializable]
public class ModulightException : Exception
{
/// <summary>
///
/// </summary>
public ModulightException() { }
/// <inheritdoc/>
public ModulightException(string message) : base(message) { }
/// <inheritdoc/>
public ModulightException(string message, Exception inner) : base(message, inner) { }
/// <summary>
///
/// </summary>
/// <param name="info"></param>
/// <param name="context"></param>
protected ModulightException(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
}
/// <summary>
/// Module or its service / option is not found.
/// </summary>
[Serializable]
public class ModuleNotFoundException : ModulightException
{
/// <summary>
///
/// </summary>
public ModuleNotFoundException() { }
/// <inheritdoc/>
public ModuleNotFoundException(string message) : base(message) { }
/// <inheritdoc/>
public ModuleNotFoundException(string message, Exception inner) : base(message, inner) { }
/// <inheritdoc/>
protected ModuleNotFoundException(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
}
/// <summary>
/// Incompatible type
/// </summary>
[Serializable]
public class IncompatibleTypeException : ModulightException
{
/// <summary>
///
/// </summary>
public Type ExpectedType { get; }
/// <summary>
///
/// </summary>
public Type Type { get; }
/// <summary>
///
/// </summary>
public IncompatibleTypeException(Type type, Type expected) : base($"{type.FullName} is not expected type {expected.FullName}.")
{
Type = type;
ExpectedType = expected;
}
}
}