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

FabricServiceNotFoundException 构造函数

定义

重载

FabricServiceNotFoundException()

使用错误代码 ServiceNotFound初始化 类的新实例FabricServiceNotFoundException

FabricServiceNotFoundException(String)

使用错误代码ServiceNotFound和指定的错误消息初始化 类的新实例FabricServiceNotFoundException

FabricServiceNotFoundException(String, Exception)

使用指定的错误消息和对导致此异常的内部异常的引用初始化 类的新实例 FabricServiceNotFoundException

FabricServiceNotFoundException()

使用错误代码 ServiceNotFound初始化 类的新实例FabricServiceNotFoundException

public FabricServiceNotFoundException ();
Public Sub New ()

适用于

FabricServiceNotFoundException(String)

使用错误代码ServiceNotFound和指定的错误消息初始化 类的新实例FabricServiceNotFoundException

public FabricServiceNotFoundException (string message);
new System.Fabric.FabricServiceNotFoundException : string -> System.Fabric.FabricServiceNotFoundException
Public Sub New (message As String)

参数

message
String

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

适用于

FabricServiceNotFoundException(String, Exception)

使用指定的错误消息和对导致此异常的内部异常的引用初始化 类的新实例 FabricServiceNotFoundException

public FabricServiceNotFoundException (string message, Exception inner);
new System.Fabric.FabricServiceNotFoundException : string * Exception -> System.Fabric.FabricServiceNotFoundException
Public Sub New (message As String, inner As Exception)

参数

message
String

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

inner
Exception

导致当前异常的异常;如果未指定内部异常,则为 null。 类 Exception 提供有关内部异常的更多详细信息。

适用于