MessageStoreLockLostException Constructors

Definition

Overloads

MessageStoreLockLostException(String)

Initializes a new instance of the MessageStoreLockLostException class with a specified error message.

MessageStoreLockLostException(String, Exception)

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

MessageStoreLockLostException(String)

Initializes a new instance of the MessageStoreLockLostException class with a specified error message.

public MessageStoreLockLostException (string message);
new Microsoft.ServiceBus.Messaging.MessageStoreLockLostException : string -> Microsoft.ServiceBus.Messaging.MessageStoreLockLostException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

MessageStoreLockLostException(String, Exception)

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

public MessageStoreLockLostException (string message, Exception innerException);
new Microsoft.ServiceBus.Messaging.MessageStoreLockLostException : string * Exception -> Microsoft.ServiceBus.Messaging.MessageStoreLockLostException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The exception that is the cause of the current exception.

Applies to