FabricServiceNotFoundException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FabricServiceNotFoundException() |
Initializes a new instance of FabricServiceNotFoundException class with error code ServiceNotFound. |
FabricServiceNotFoundException(String) |
Initializes a new instance of FabricServiceNotFoundException class with error code ServiceNotFound and a specified error message. |
FabricServiceNotFoundException(String, Exception) |
Initializes a new instance of FabricServiceNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
FabricServiceNotFoundException()
Initializes a new instance of FabricServiceNotFoundException class with error code ServiceNotFound.
public FabricServiceNotFoundException ();
Public Sub New ()
Applies to
FabricServiceNotFoundException(String)
Initializes a new instance of FabricServiceNotFoundException class with error code ServiceNotFound and a specified error message.
public FabricServiceNotFoundException (string message);
new System.Fabric.FabricServiceNotFoundException : string -> System.Fabric.FabricServiceNotFoundException
Public Sub New (message As String)
Parameters
- message
- String
The error message that explains the reason for the exception.
Applies to
FabricServiceNotFoundException(String, Exception)
Initializes a new instance of FabricServiceNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public FabricServiceNotFoundException (string message, Exception inner);
new System.Fabric.FabricServiceNotFoundException : string * Exception -> System.Fabric.FabricServiceNotFoundException
Public Sub New (message As String, inner As Exception)
Parameters
- message
- String
The error message that explains the reason for the exception.
- inner
- Exception
The exception that is the cause of the current exception or null if no inner exception is specified. The Exception class provides more details about the inner exception.
Applies to
Azure SDK for .NET