-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathJsRuntimeException.cs
More file actions
131 lines (117 loc) · 4.15 KB
/
JsRuntimeException.cs
File metadata and controls
131 lines (117 loc) · 4.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
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
using System;
#if !NETSTANDARD1_3
using System.Runtime.Serialization;
#if !NET10_0_OR_GREATER
using System.Security.Permissions;
#endif
#endif
using JavaScriptEngineSwitcher.Core.Constants;
namespace JavaScriptEngineSwitcher.Core
{
/// <summary>
/// The exception that is thrown during the script execution
/// </summary>
#if !NETSTANDARD1_3
[Serializable]
#endif
public class JsRuntimeException : JsScriptException
{
/// <summary>
/// String representation of the script call stack
/// </summary>
private string _callStack = string.Empty;
/// <summary>
/// Gets or sets a string representation of the script call stack
/// </summary>
public string CallStack
{
get { return _callStack; }
set { _callStack = value; }
}
/// <summary>
/// Initializes a new instance of the <see cref="JsRuntimeException"/> class
/// with a specified error message
/// </summary>
/// <param name="message">The message that describes the error</param>
public JsRuntimeException(string message)
: base(message)
{
Category = JsErrorCategory.Runtime;
}
/// <summary>
/// Initializes a new instance of the <see cref="JsRuntimeException"/> 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 JsRuntimeException(string message, Exception innerException)
: base(message, innerException)
{
Category = JsErrorCategory.Runtime;
}
/// <summary>
/// Initializes a new instance of the <see cref="JsRuntimeException"/> 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 JsRuntimeException(string message, string engineName, string engineVersion)
: base(message, engineName, engineVersion)
{
Category = JsErrorCategory.Runtime;
}
/// <summary>
/// Initializes a new instance of the <see cref="JsRuntimeException"/> 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 JsRuntimeException(string message, string engineName, string engineVersion,
Exception innerException)
: base(message, engineName, engineVersion, innerException)
{
Category = JsErrorCategory.Runtime;
}
#if !NETSTANDARD1_3
/// <summary>
/// Initializes a new instance of the <see cref="JsRuntimeException"/> 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 JsRuntimeException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
if (info is not null)
{
_callStack = info.GetString("CallStack");
}
}
#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("CallStack", _callStack);
}
#endregion
#endif
}
}