Class WorkflowParameterException
- Namespace
- Acuit.Pinpoint.Workflows.Parameters
- Assembly
- Acuit.Pinpoint.Workflows.dll
The exception that is thrown when a workflow parameter could not be provided to a workflow activity.
public class WorkflowParameterException : WorkflowException, ISerializable
- Inheritance
-
WorkflowParameterException
- Implements
- Inherited Members
Constructors
WorkflowParameterException()
Initializes a new instance of the WorkflowParameterException class with a default message similar to "Exception of type 'Acuit.Pinpoint.Workflows.Parameters.WorkflowParameterException' was thrown."
public WorkflowParameterException()
WorkflowParameterException(string?)
Initializes a new instance of the WorkflowParameterException class with a specified error message.
public WorkflowParameterException(string? message)
Parameters
messagestringThe message that describes the error.
WorkflowParameterException(string?, Exception?)
Initializes a new instance of the WorkflowParameterException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public WorkflowParameterException(string? message, Exception? inner)
Parameters
messagestringThe message that describes the error.
innerExceptionThe exception that is the cause of the current exception, or null if no inner exception is specified.
WorkflowParameterException(string?, string?)
Initializes a new instance of the WorkflowParameterException class with a specified error message and parameter name.
public WorkflowParameterException(string? message, string? parameterName)
Parameters
WorkflowParameterException(string?, string?, Exception?)
Initializes a new instance of the WorkflowParameterException class with a specified error message, parameter name, and a reference to the inner exception that is the cause of this exception.
public WorkflowParameterException(string? message, string? parameterName, Exception? inner)
Parameters
messagestringThe message that describes the error.
parameterNamestringThe full parameter name.
innerExceptionThe exception that is the cause of the current exception, or null if no inner exception is specified.
Properties
ParameterName
Gets the full parameter name.
public string? ParameterName { get; }