QueueFullException 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
QueueFullException() |
Initializes a new Instance of the QueueFullException class. |
QueueFullException(String) |
Initializes a new Instance of the QueueFullException class with a specified error message. |
QueueFullException(String, Exception) |
Initializes a new instance of the QueueFullException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
QueueFullException()
Initializes a new Instance of the QueueFullException class.
public QueueFullException ();
Public Sub New ()
Applies to
QueueFullException(String)
Initializes a new Instance of the QueueFullException class with a specified error message.
public QueueFullException (string msg);
new Microsoft.ServiceFabric.Data.Collections.QueueFullException : string -> Microsoft.ServiceFabric.Data.Collections.QueueFullException
Public Sub New (msg As String)
Parameters
- msg
- String
The message that describes the error.
Applies to
QueueFullException(String, Exception)
Initializes a new instance of the QueueFullException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public QueueFullException (string msg, Exception innerException);
new Microsoft.ServiceFabric.Data.Collections.QueueFullException : string * Exception -> Microsoft.ServiceFabric.Data.Collections.QueueFullException
Public Sub New (msg As String, innerException As Exception)
Parameters
- msg
- String
The error message that explains the reason for the exception.
- innerException
- Exception
The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
Applies to
Azure SDK for .NET