PartitionNotFoundException 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
PartitionNotFoundException(SerializationInfo, StreamingContext) |
Initializes a new instance of the PartitionNotFoundException class using default values. |
PartitionNotFoundException(String, String) |
Initializes a new instance of the PartitionNotFoundException class using error message and last continuation token. |
PartitionNotFoundException(String, String, Exception) |
Initializes a new instance of the PartitionNotFoundException class using error message and inner exception. |
PartitionNotFoundException(SerializationInfo, StreamingContext)
Initializes a new instance of the PartitionNotFoundException class using default values.
protected PartitionNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
The SerializationInfo object that holds serialized object data for the exception being thrown.
- context
- StreamingContext
The StreamingContext that contains contextual information about the source or destination.
Applies to
PartitionNotFoundException(String, String)
Initializes a new instance of the PartitionNotFoundException class using error message and last continuation token.
public PartitionNotFoundException (string message, string lastContinuation);
new Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionNotFoundException : string * string -> Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionNotFoundException
Public Sub New (message As String, lastContinuation As String)
Parameters
- message
- String
The exception error message.
- lastContinuation
- String
Request continuation token.
Applies to
PartitionNotFoundException(String, String, Exception)
Initializes a new instance of the PartitionNotFoundException class using error message and inner exception.
public PartitionNotFoundException (string message, string lastContinuation, Exception innerException);
new Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionNotFoundException : string * string * Exception -> Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionNotFoundException
Public Sub New (message As String, lastContinuation As String, innerException As Exception)
Parameters
- message
- String
The exception error message.
- lastContinuation
- String
The last known continuation token
- innerException
- Exception
The inner exception.
Applies to
Azure SDK for .NET