FabricMessageTooLargeException Constructors

Definition

Overloads

FabricMessageTooLargeException()

Initializes a new instance of FabricMessageTooLargeException class with error code FabricMessageTooLarge.

FabricMessageTooLargeException(String)

Initializes a new instance of FabricMessageTooLargeException class with error code FabricMessageTooLarge and a specified error message.

FabricMessageTooLargeException(String, Exception)

Initializes a new instance of FabricMessageTooLargeException class with a specified error message and a reference to the inner exception that is the cause of this exception.

FabricMessageTooLargeException()

Initializes a new instance of FabricMessageTooLargeException class with error code FabricMessageTooLarge.

public FabricMessageTooLargeException ();
Public Sub New ()

Applies to

FabricMessageTooLargeException(String)

Initializes a new instance of FabricMessageTooLargeException class with error code FabricMessageTooLarge and a specified error message.

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

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

FabricMessageTooLargeException(String, Exception)

Initializes a new instance of FabricMessageTooLargeException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public FabricMessageTooLargeException (string message, Exception inner);
new System.Fabric.FabricMessageTooLargeException : string * Exception -> System.Fabric.FabricMessageTooLargeException
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