你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ReentrantActorInvalidStateException 构造函数

定义

重载

ReentrantActorInvalidStateException()

初始化 ReentrantActorInvalidStateException 类的新实例。

ReentrantActorInvalidStateException(String)

用指定的错误消息初始化 ReentrantActorInvalidStateException 类的新实例。

ReentrantActorInvalidStateException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 ReentrantActorInvalidStateException 类的新实例。

ReentrantActorInvalidStateException()

初始化 ReentrantActorInvalidStateException 类的新实例。

public ReentrantActorInvalidStateException ();
Public Sub New ()

适用于

ReentrantActorInvalidStateException(String)

用指定的错误消息初始化 ReentrantActorInvalidStateException 类的新实例。

public ReentrantActorInvalidStateException (string message);
new Microsoft.ServiceFabric.Actors.ReentrantActorInvalidStateException : string -> Microsoft.ServiceFabric.Actors.ReentrantActorInvalidStateException
Public Sub New (message As String)

参数

message
String

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

适用于

ReentrantActorInvalidStateException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 ReentrantActorInvalidStateException 类的新实例。

public ReentrantActorInvalidStateException (string message, Exception inner);
new Microsoft.ServiceFabric.Actors.ReentrantActorInvalidStateException : string * Exception -> Microsoft.ServiceFabric.Actors.ReentrantActorInvalidStateException
Public Sub New (message As String, inner As Exception)

参数

message
String

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

inner
Exception

导致当前异常的异常;如果未指定任何内部异常,则为 null 引用。

适用于