LocalRpcException 构造函数

定义

重载

LocalRpcException()

初始化 LocalRpcException 类的新实例。

LocalRpcException(String)

初始化 LocalRpcException 类的新实例。

LocalRpcException(String, Exception)

初始化 LocalRpcException 类的新实例。

LocalRpcException()

初始化 LocalRpcException 类的新实例。

public LocalRpcException ();
Public Sub New ()

适用于

LocalRpcException(String)

初始化 LocalRpcException 类的新实例。

public LocalRpcException (string message);
public LocalRpcException (string? message);
new StreamJsonRpc.LocalRpcException : string -> StreamJsonRpc.LocalRpcException
Public Sub New (message As String)

参数

message
String

解释异常原因的错误消息。

适用于

LocalRpcException(String, Exception)

初始化 LocalRpcException 类的新实例。

public LocalRpcException (string message, Exception inner);
public LocalRpcException (string? message, Exception? inner);
new StreamJsonRpc.LocalRpcException : string * Exception -> StreamJsonRpc.LocalRpcException
Public Sub New (message As String, inner As Exception)

参数

message
String

解释异常原因的错误消息。

inner
Exception

导致当前异常的异常;如果未指定任何内部异常,则为空引用(在 Visual Basic 中为 Nothing)。

适用于