JSVsaException 构造函数

定义

此成员支持 .NET Framework 结构,不能在代码中直接使用。

重载

JSVsaException()

使用说明错误的系统提供的消息初始化 JSVsaException 类的新实例。 此成员支持 .NET Framework 结构,不能在代码中直接使用。

JSVsaException(JSVsaError)

此成员支持 .NET Framework 结构,不能在代码中直接使用。

JSVsaException(String)

使用说明错误的指定消息初始化 JSVsaException 类的新实例。 此成员支持 .NET Framework 结构,不能在代码中直接使用。

JSVsaException(JSVsaError, String)

此成员支持 .NET Framework 结构,不能在代码中直接使用。

JSVsaException(SerializationInfo, StreamingContext)

用序列化数据初始化 JSVsaException 类的新实例。 此成员支持 .NET Framework 结构,不能在代码中直接使用。

JSVsaException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 JSVsaException 类的新实例。 此成员支持 .NET Framework 结构,不能在代码中直接使用。

JSVsaException(JSVsaError, String, Exception)

此成员支持 .NET Framework 结构,不能在代码中直接使用。

JSVsaException()

使用说明错误的系统提供的消息初始化 JSVsaException 类的新实例。 此成员支持 .NET Framework 结构,不能在代码中直接使用。

public:
 JSVsaException();
public JSVsaException ();
Public Sub New ()

适用于

JSVsaException(JSVsaError)

此成员支持 .NET Framework 结构,不能在代码中直接使用。

public:
 JSVsaException(Microsoft::JScript::Vsa::JSVsaError error);
public JSVsaException (Microsoft.JScript.Vsa.JSVsaError error);
new Microsoft.JScript.Vsa.JSVsaException : Microsoft.JScript.Vsa.JSVsaError -> Microsoft.JScript.Vsa.JSVsaException
Public Sub New (error As JSVsaError)

参数

error
JSVsaError

描述异常的原因的 JSVsaError 枚举值。

适用于

JSVsaException(String)

使用说明错误的指定消息初始化 JSVsaException 类的新实例。 此成员支持 .NET Framework 结构,不能在代码中直接使用。

public:
 JSVsaException(System::String ^ message);
public JSVsaException (string message);
new Microsoft.JScript.Vsa.JSVsaException : string -> Microsoft.JScript.Vsa.JSVsaException
Public Sub New (message As String)

参数

message
String

描述该异常的消息。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

适用于

JSVsaException(JSVsaError, String)

此成员支持 .NET Framework 结构,不能在代码中直接使用。

public:
 JSVsaException(Microsoft::JScript::Vsa::JSVsaError error, System::String ^ message);
public JSVsaException (Microsoft.JScript.Vsa.JSVsaError error, string message);
new Microsoft.JScript.Vsa.JSVsaException : Microsoft.JScript.Vsa.JSVsaError * string -> Microsoft.JScript.Vsa.JSVsaException
Public Sub New (error As JSVsaError, message As String)

参数

error
JSVsaError

描述异常的原因的 JSVsaError 枚举值。

message
String

描述该异常的消息。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

适用于

JSVsaException(SerializationInfo, StreamingContext)

用序列化数据初始化 JSVsaException 类的新实例。 此成员支持 .NET Framework 结构,不能在代码中直接使用。

public:
 JSVsaException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
public JSVsaException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.JScript.Vsa.JSVsaException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.JScript.Vsa.JSVsaException
Public Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

承载序列化对象数据的对象。

context
StreamingContext

关于来源和目标的上下文信息

适用于

JSVsaException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 JSVsaException 类的新实例。 此成员支持 .NET Framework 结构,不能在代码中直接使用。

public:
 JSVsaException(System::String ^ message, Exception ^ innerException);
public JSVsaException (string message, Exception innerException);
new Microsoft.JScript.Vsa.JSVsaException : string * Exception -> Microsoft.JScript.Vsa.JSVsaException
Public Sub New (message As String, innerException As Exception)

参数

message
String

描述该异常的消息。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

innerException
Exception

导致当前异常的异常。 如果 innerException 参数不为 null,则当前异常将在处理内部异常的 catch 块中引发。

适用于

JSVsaException(JSVsaError, String, Exception)

此成员支持 .NET Framework 结构,不能在代码中直接使用。

public:
 JSVsaException(Microsoft::JScript::Vsa::JSVsaError error, System::String ^ message, Exception ^ innerException);
public JSVsaException (Microsoft.JScript.Vsa.JSVsaError error, string message, Exception innerException);
new Microsoft.JScript.Vsa.JSVsaException : Microsoft.JScript.Vsa.JSVsaError * string * Exception -> Microsoft.JScript.Vsa.JSVsaException
Public Sub New (error As JSVsaError, message As String, innerException As Exception)

参数

error
JSVsaError

描述异常的原因的 JSVsaError 枚举值。

message
String

描述该异常的消息。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

innerException
Exception

导致当前异常的异常。 如果 innerException 参数不为 null,则当前异常将在处理内部异常的 catch 块中引发。

适用于