FabricEndpointNotFoundException 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
FabricEndpointNotFoundException() |
Initializes a new instance of FabricEndpointNotFoundException class with error code FabricEndpointNotFound. |
FabricEndpointNotFoundException(String) |
Initializes a new instance of FabricEndpointNotFoundException class with error code FabricEndpointNotFound and a specified error message. |
FabricEndpointNotFoundException(String, Exception) |
Initializes a new instance of FabricEndpointNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
FabricEndpointNotFoundException()
Initializes a new instance of FabricEndpointNotFoundException class with error code FabricEndpointNotFound.
public FabricEndpointNotFoundException ();
Public Sub New ()
Applies to
FabricEndpointNotFoundException(String)
Initializes a new instance of FabricEndpointNotFoundException class with error code FabricEndpointNotFound and a specified error message.
public FabricEndpointNotFoundException (string message);
new System.Fabric.FabricEndpointNotFoundException : string -> System.Fabric.FabricEndpointNotFoundException
Public Sub New (message As String)
Parameters
- message
- String
The error message that explains the reason for the exception.
Applies to
FabricEndpointNotFoundException(String, Exception)
Initializes a new instance of FabricEndpointNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public FabricEndpointNotFoundException (string message, Exception inner);
new System.Fabric.FabricEndpointNotFoundException : string * Exception -> System.Fabric.FabricEndpointNotFoundException
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