forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsScriptException.cs
More file actions
185 lines (164 loc) · 5.27 KB
/
JsScriptException.cs
File metadata and controls
185 lines (164 loc) · 5.27 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
using System;
#if !NETSTANDARD1_3
using System.Runtime.Serialization;
#if !NET10_0_OR_GREATER
using System.Security.Permissions;
#endif
#endif
namespace JavaScriptEngineSwitcher.Core
{
/// <summary>
/// The exception that is thrown during the script processing
/// </summary>
#if !NETSTANDARD1_3
[Serializable]
#endif
public class JsScriptException : JsException
{
/// <summary>
/// Type of the script error
/// </summary>
private string _type = string.Empty;
/// <summary>
/// Document name
/// </summary>
private string _documentName = string.Empty;
/// <summary>
/// Line number
/// </summary>
private int _lineNumber;
/// <summary>
/// Column number
/// </summary>
private int _columnNumber;
/// <summary>
/// Source fragment
/// </summary>
private string _sourceFragment = string.Empty;
/// <summary>
/// Gets or sets a type of the script error
/// </summary>
public string Type
{
get { return _type; }
set { _type = value; }
}
/// <summary>
/// Gets or sets a document name
/// </summary>
public string DocumentName
{
get { return _documentName; }
set { _documentName = value; }
}
/// <summary>
/// Gets or sets a line number
/// </summary>
public int LineNumber
{
get { return _lineNumber; }
set { _lineNumber = value; }
}
/// <summary>
/// Gets or sets a column number
/// </summary>
public int ColumnNumber
{
get { return _columnNumber; }
set { _columnNumber = value; }
}
/// <summary>
/// Gets or sets a source fragment
/// </summary>
public string SourceFragment
{
get { return _sourceFragment; }
set { _sourceFragment = value; }
}
/// <summary>
/// Initializes a new instance of the <see cref="JsScriptException"/> class
/// with a specified error message
/// </summary>
/// <param name="message">The message that describes the error</param>
public JsScriptException(string message)
: base(message)
{ }
/// <summary>
/// Initializes a new instance of the <see cref="JsScriptException"/> 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 JsScriptException(string message, Exception innerException)
: base(message, innerException)
{ }
/// <summary>
/// Initializes a new instance of the <see cref="JsScriptException"/> 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 JsScriptException(string message, string engineName, string engineVersion)
: base(message, engineName, engineVersion)
{ }
/// <summary>
/// Initializes a new instance of the <see cref="JsScriptException"/> 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 JsScriptException(string message, string engineName, string engineVersion,
Exception innerException)
: base(message, engineName, engineVersion, innerException)
{ }
#if !NETSTANDARD1_3
/// <summary>
/// Initializes a new instance of the <see cref="JsScriptException"/> 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 JsScriptException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
if (info is not null)
{
_type = info.GetString("Type");
_documentName = info.GetString("DocumentName");
_lineNumber = info.GetInt32("LineNumber");
_columnNumber = info.GetInt32("ColumnNumber");
_sourceFragment = info.GetString("SourceFragment");
}
}
#region JsException 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("Type", _type);
info.AddValue("DocumentName", _documentName);
info.AddValue("LineNumber", _lineNumber);
info.AddValue("ColumnNumber", _columnNumber);
info.AddValue("SourceFragment", _sourceFragment);
}
#endregion
#endif
}
}