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
218 lines (188 loc) · 6.12 KB
/
JsException.cs
File metadata and controls
218 lines (188 loc) · 6.12 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
using System;
using System.Text;
#if !NETSTANDARD1_3
using System.Runtime.Serialization;
#if !NET10_0_OR_GREATER
using System.Security.Permissions;
#endif
#endif
using AdvancedStringBuilder;
using JavaScriptEngineSwitcher.Core.Constants;
using JavaScriptEngineSwitcher.Core.Helpers;
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>
/// Error category
/// </summary>
private string _category = JsErrorCategory.Unknown;
/// <summary>
/// Description of error
/// </summary>
private string _description = 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>
/// Gets or sets a error category
/// </summary>
public string Category
{
get { return _category; }
set { _category = value; }
}
/// <summary>
/// Gets or sets a description of error
/// </summary>
public string Description
{
get { return _description; }
set { _description = value; }
}
/// <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>
#if NET10_0_OR_GREATER
[Obsolete(DiagnosticId = "SYSLIB0051")]
#endif
protected JsException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
if (info is not null)
{
_engineName = info.GetString("EngineName");
_engineVersion = info.GetString("EngineVersion");
_category = info.GetString("Category");
_description = info.GetString("Description");
}
}
#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>
#if NET10_0_OR_GREATER
[Obsolete(DiagnosticId = "SYSLIB0051")]
#else
[SecurityPermission(SecurityAction.Demand, SerializationFormatter = true)]
#endif
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
if (info is null)
{
throw new ArgumentNullException(nameof(info));
}
base.GetObjectData(info, context);
info.AddValue("EngineName", _engineName);
info.AddValue("EngineVersion", _engineVersion);
info.AddValue("Category", _category);
info.AddValue("Description", _description);
}
#endregion
#endif
#region Object overrides
/// <summary>
/// Returns a string that represents the current exception
/// </summary>
/// <returns>A string that represents the current exception</returns>
public override string ToString()
{
string errorDetails = JsErrorHelpers.GenerateErrorDetails(this, true);
var stringBuilderPool = StringBuilderPool.Shared;
StringBuilder resultBuilder = stringBuilderPool.Rent();
resultBuilder.Append(this.GetType().FullName);
resultBuilder.Append(": ");
resultBuilder.Append(this.Message);
if (errorDetails.Length > 0)
{
resultBuilder.AppendLine();
resultBuilder.AppendLine();
resultBuilder.Append(errorDetails);
}
if (this.InnerException is not null)
{
resultBuilder.Append(" ---> ");
resultBuilder.Append(this.InnerException.ToString());
}
if (this.StackTrace is not null)
{
resultBuilder.AppendLine();
resultBuilder.AppendLine(this.StackTrace);
}
string result = resultBuilder.ToString();
stringBuilderPool.Return(resultBuilder);
return result;
}
#endregion
}
}