Table of Contents

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

message string

The 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

message string

The message that describes the error.

inner Exception

The 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

message string

The message that describes the error.

parameterName string

The full parameter name.

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

message string

The message that describes the error.

parameterName string

The full parameter name.

inner Exception

The 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; }

Property Value

string