< Summary

Information
Class: Elsa.Bpmn.Interchange.Exceptions.BpmnBindingException
Assembly: Elsa.Bpmn.Interchange
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Bpmn.Interchange/Exceptions/BpmnBindingException.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 12
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Bpmn.Interchange/Exceptions/BpmnBindingException.cs

#LineLine coverage
 1namespace Elsa.Bpmn.Interchange.Exceptions;
 2
 3/// <summary>
 4/// Thrown when a BPMN document's work bindings cannot be turned into Elsa activities.
 5/// </summary>
 6/// <remarks>
 7/// Every refusal this type carries is a design-time one: the document, or the <c>elsa:activityBinding</c> in it, does
 8/// not say enough to build a runnable graph. Refusing here rather than binding something plausible is deliberate — the
 9/// alternatives (an unbound task quietly dropped, a call activity dispatching nothing, a timer of zero) all produce a
 10/// workflow that runs to completion looking healthy while doing none of what the document says.
 11/// </remarks>
 912public class BpmnBindingException(string message) : Exception(message);

Methods/Properties

.ctor(System.String)