EntitySchedulerException 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
EntitySchedulerException() |
Initializes a new instance of the EntitySchedulerException class. |
EntitySchedulerException(SerializationInfo, StreamingContext) |
Initializes a new instance of the EntitySchedulerException class with serialized data. |
EntitySchedulerException(String, Exception) |
Initializes an new instance of the EntitySchedulerException class. |
EntitySchedulerException()
- Source:
- EntitySchedulerException.cs
Initializes a new instance of the EntitySchedulerException class.
public EntitySchedulerException ();
Public Sub New ()
Applies to
EntitySchedulerException(SerializationInfo, StreamingContext)
- Source:
- EntitySchedulerException.cs
Initializes a new instance of the EntitySchedulerException class with serialized data.
protected EntitySchedulerException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.Azure.WebJobs.Extensions.DurableTask.EntitySchedulerException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.Azure.WebJobs.Extensions.DurableTask.EntitySchedulerException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
The System.Runtime.Serialization.SerializationInfo that holds the serialized object data about the exception being thrown.
- context
- StreamingContext
The System.Runtime.Serialization.StreamingContext that contains contextual information about the source or destination.
Applies to
EntitySchedulerException(String, Exception)
- Source:
- EntitySchedulerException.cs
Initializes an new instance of the EntitySchedulerException class.
public EntitySchedulerException (string errorMessage, Exception innerException);
new Microsoft.Azure.WebJobs.Extensions.DurableTask.EntitySchedulerException : string * Exception -> Microsoft.Azure.WebJobs.Extensions.DurableTask.EntitySchedulerException
Public Sub New (errorMessage As String, innerException As Exception)
Parameters
- errorMessage
- String
The message that describes the error.
- innerException
- Exception
The exception that was caught.
Applies to
Azure SDK for .NET