< Summary - pva.SuperV

Information
Class: pva.SuperV.Engine.Exceptions.FieldUsedInOtherProcessingException
Assembly: pva.SuperV.Engine
File(s): /home/runner/work/pva.SuperV/pva.SuperV/pva.SuperV.Engine/Exceptions/FieldUsedInOtherProcessingException.cs
Tag: dotnet-ubuntu_22190969454
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 26
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%
.ctor(...)100%11100%

File(s)

/home/runner/work/pva.SuperV/pva.SuperV/pva.SuperV.Engine/Exceptions/FieldUsedInOtherProcessingException.cs

#LineLine coverage
 1using System.Diagnostics.CodeAnalysis;
 2
 3namespace pva.SuperV.Engine.Exceptions
 4{
 5    [Serializable]
 6    public class FieldUsedInOtherProcessingException : SuperVException
 7    {
 18        public FieldUsedInOtherProcessingException(string? fieldName, string processingType) : this($"Field {fieldName} 
 19        {
 110        }
 11
 112        public FieldUsedInOtherProcessingException(string message) : base(message)
 113        {
 114        }
 15
 16        [ExcludeFromCodeCoverage]
 17        public FieldUsedInOtherProcessingException()
 18        {
 19        }
 20
 21        [ExcludeFromCodeCoverage]
 22        public FieldUsedInOtherProcessingException(string? message, Exception? innerException) : base(message, innerExce
 23        {
 24        }
 25    }
 26}