Workflow Engine .NET

Assembly: OptimaJet.Workflow.Core

Class TransitionConditionNotFoundException

OptimaJet.Workflow.Core.Fault.TransitionConditionNotFoundException

Represents an exception that is thrown when a transition condition cannot be found for the specified transition.

public class TransitionConditionNotFoundException : Exception, ISerializable

Inheritance

  • Object
  • Exception

Implemented Interfaces

  • System.Runtime.Serialization.ISerializable

Constructors

public TransitionConditionNotFoundException(ConditionType type, string transitionName, string conditionName, string schemeCode) #
Initializes a new instance of the TransitionConditionNotFoundException class.

Parameters

Name
Type
Description
type
ConditionType
The type of condition that was not found.
transitionName
String
The transition that does not contain the requested condition.
conditionName
String
The name or expression text used to locate the missing condition.
schemeCode
String
The workflow scheme code that contains the transition.

Remarks

The missing condition can be either action-based (ConditionType.Action) or expression-based (ConditionType.Expression), depending on the transition builder call that raises this exception.