InternalErrorException 构造函数

定义

初始化 InternalErrorException 类的新实例。

重载

InternalErrorException()

此 API 支持产品基础结构,不能在代码中直接使用。

初始化 InternalErrorException 类的新实例。

InternalErrorException(String)

此 API 支持产品基础结构,不能在代码中直接使用。

初始化 InternalErrorException 类的新实例,指定错误消息。

InternalErrorException(String, Exception)

此 API 支持产品基础结构,不能在代码中直接使用。

初始化 InternalErrorException 类的新实例,指定错误消息和内部异常。

注解

此类支持 Visual Basic 编译器,不应直接从代码中使用。

InternalErrorException()

初始化 InternalErrorException 类的新实例。

此 API 支持产品基础结构,不能在代码中直接使用。

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

注解

此类支持 Visual Basic 编译器,不应直接从代码中使用。

适用于

InternalErrorException(String)

初始化 InternalErrorException 类的新实例,指定错误消息。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 InternalErrorException(System::String ^ message);
public InternalErrorException (string message);
new Microsoft.VisualBasic.CompilerServices.InternalErrorException : string -> Microsoft.VisualBasic.CompilerServices.InternalErrorException
Public Sub New (message As String)

参数

message
String

描述错误的消息。

注解

参数的值 message 设置为 属性的值 Message

此类支持 Visual Basic 编译器,不应直接从代码中使用。

适用于

InternalErrorException(String, Exception)

初始化 InternalErrorException 类的新实例,指定错误消息和内部异常。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 InternalErrorException(System::String ^ message, Exception ^ innerException);
public InternalErrorException (string message, Exception innerException);
new Microsoft.VisualBasic.CompilerServices.InternalErrorException : string * Exception -> Microsoft.VisualBasic.CompilerServices.InternalErrorException
Public Sub New (message As String, innerException As Exception)

参数

message
String

描述错误的消息。

innerException
Exception

导致当前内部异常的异常。

注解

参数的值 message 设置为 属性的值 Message 。 参数的值 innerException 设置为 属性的值 InnerException

此类支持 Visual Basic 编译器,不应直接从代码中使用。

适用于