FunctionFailedException 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
FunctionFailedException(String) |
Initializes a new instance of a FunctionFailedException. |
FunctionFailedException(String, Exception) |
Initializes a new instance of a FunctionFailedException. |
FunctionFailedException(String)
- Source:
- FunctionFailedException.cs
Initializes a new instance of a FunctionFailedException.
public FunctionFailedException (string message);
new Microsoft.Azure.WebJobs.Extensions.DurableTask.FunctionFailedException : string -> Microsoft.Azure.WebJobs.Extensions.DurableTask.FunctionFailedException
Public Sub New (message As String)
Parameters
- message
- String
A message describing where to look for more details.
Applies to
FunctionFailedException(String, Exception)
- Source:
- FunctionFailedException.cs
Initializes a new instance of a FunctionFailedException.
public FunctionFailedException (string message, Exception innerException);
new Microsoft.Azure.WebJobs.Extensions.DurableTask.FunctionFailedException : string * Exception -> Microsoft.Azure.WebJobs.Extensions.DurableTask.FunctionFailedException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
A message describing where to look for more details.
- innerException
- Exception
The exception that caused the function to fail.