Class TransitionConditionNotFoundException
OptimaJet.Workflow.Core.Fault.TransitionConditionNotFoundException
Represents an exception that is thrown when a transition condition cannot be found for the specified transition.
Namespace: OptimaJet.Workflow.Core.Fault
public class TransitionConditionNotFoundException : Exception, ISerializableInheritance
- 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
typeConditionTypeThe type of condition that was not found.
transitionNameStringThe transition that does not contain the requested condition.
conditionNameStringThe name or expression text used to locate the missing condition.
schemeCodeStringThe 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.