< Summary - pva.SuperV

Information
Class: pva.SuperV.Engine.Exceptions.MixedHistoryProcessingException
Assembly: pva.SuperV.Engine
File(s): /home/runner/work/pva.SuperV/pva.SuperV/pva.SuperV.Engine/Exceptions/MixedHistoryProcessingException.cs
Tag: dotnet-ubuntu_22190969454
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 22
Line coverage: 0%
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%210%

File(s)

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

#LineLine coverage
 1using System.Diagnostics.CodeAnalysis;
 2
 3namespace pva.SuperV.Engine.Exceptions
 4{
 5    [Serializable]
 6    internal class MixedHistoryProcessingException : SuperVException
 7    {
 08        public MixedHistoryProcessingException(string? fieldName) : base($"Field {fieldName} is used in another history 
 09        {
 010        }
 11
 12        [ExcludeFromCodeCoverage]
 13        public MixedHistoryProcessingException()
 14        {
 15        }
 16
 17        [ExcludeFromCodeCoverage]
 18        public MixedHistoryProcessingException(string? message, Exception? innerException) : base(message, innerExceptio
 19        {
 20        }
 21    }
 22}

Methods/Properties

.ctor(System.String)