forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsException.cs
More file actions
128 lines (113 loc) · 4.01 KB
/
JsException.cs
File metadata and controls
128 lines (113 loc) · 4.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
using System;
#if !NETSTANDARD1_3
using System.Runtime.Serialization;
using System.Security.Permissions;
#endif
namespace JavaScriptEngineSwitcher.Core
{
/// <summary>
/// The exception that is thrown during the work of JS engine
/// </summary>
#if !NETSTANDARD1_3
[Serializable]
#endif
public class JsException : Exception
{
/// <summary>
/// Name of JS engine
/// </summary>
private readonly string _engineName = string.Empty;
/// <summary>
/// Version of original JS engine
/// </summary>
private readonly string _engineVersion = string.Empty;
/// <summary>
/// Gets a name of JS engine
/// </summary>
public string EngineName
{
get { return _engineName; }
}
/// <summary>
/// Gets a version of original JS engine
/// </summary>
public string EngineVersion
{
get { return _engineVersion; }
}
/// <summary>
/// Initializes a new instance of the <see cref="JsException"/> class
/// with a specified error message
/// </summary>
/// <param name="message">The message that describes the error</param>
public JsException(string message)
: base(message)
{ }
/// <summary>
/// Initializes a new instance of the <see cref="JsException"/> class
/// with a specified error message and a reference to the inner exception
/// that is the cause of this exception
/// </summary>
/// <param name="message">The error message that explains the reason for the exception</param>
/// <param name="innerException">The exception that is the cause of the current exception</param>
public JsException(string message, Exception innerException)
: base(message, innerException)
{ }
/// <summary>
/// Initializes a new instance of the <see cref="JsException"/> class
/// </summary>
/// <param name="message">The error message that explains the reason for the exception</param>
/// <param name="engineName">Name of JS engine</param>
/// <param name="engineVersion">Version of original JS engine</param>
public JsException(string message, string engineName, string engineVersion)
: this(message, engineName, engineVersion, null)
{ }
/// <summary>
/// Initializes a new instance of the <see cref="JsException"/> class
/// </summary>
/// <param name="message">The error message that explains the reason for the exception</param>
/// <param name="engineName">Name of JS engine</param>
/// <param name="engineVersion">Version of original JS engine</param>
/// <param name="innerException">The exception that is the cause of the current exception</param>
public JsException(string message, string engineName, string engineVersion, Exception innerException)
: base(message, innerException)
{
_engineName = engineName;
_engineVersion = engineVersion;
}
#if !NETSTANDARD1_3
/// <summary>
/// Initializes a new instance of the <see cref="JsException"/> class with serialized data
/// </summary>
/// <param name="info">The object that holds the serialized data</param>
/// <param name="context">The contextual information about the source or destination</param>
protected JsException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
if (info != null)
{
_engineName = info.GetString("EngineName");
_engineVersion = info.GetString("EngineVersion");
}
}
#region Exception overrides
/// <summary>
/// Populates a <see cref="SerializationInfo"/> with the data needed to serialize the target object
/// </summary>
/// <param name="info">The <see cref="SerializationInfo"/> to populate with data</param>
/// <param name="context">The destination (see <see cref="StreamingContext"/>) for this serialization</param>
[SecurityPermission(SecurityAction.Demand, SerializationFormatter = true)]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
if (info == null)
{
throw new ArgumentNullException("info");
}
base.GetObjectData(info, context);
info.AddValue("EngineName", _engineName);
info.AddValue("EngineVersion", _engineVersion);
}
#endregion
#endif
}
}