ServiceException Constructors

Definition

Overloads

ServiceException()

Initializes a new instance of the ServiceException class.

ServiceException(String, String)

Initializes a new instance of the ServiceException class with appropriate message.

ServiceException()

Initializes a new instance of the ServiceException class.

public ServiceException ();
Public Sub New ()

Applies to

ServiceException(String, String)

Initializes a new instance of the ServiceException class with appropriate message.

public ServiceException (string actualExceptionType, string message);
new Microsoft.ServiceFabric.Services.Communication.ServiceException : string * string -> Microsoft.ServiceFabric.Services.Communication.ServiceException
Public Sub New (actualExceptionType As String, message As String)

Parameters

actualExceptionType
String

the ActualExceptionType of exception thrown

message
String

The error message that explains the reason for this exception

Applies to