< Summary

Information
Class: Pozitron.QuerySpecification.SelectorNotFoundException
Assembly: Pozitron.QuerySpecification
File(s): /home/runner/work/QuerySpecification/QuerySpecification/src/QuerySpecification/Exceptions/SelectorNotFoundException.cs
Tag: 44_11195777782
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 16
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/QuerySpecification/QuerySpecification/src/QuerySpecification/Exceptions/SelectorNotFoundException.cs

#LineLine coverage
 1namespace Pozitron.QuerySpecification;
 2
 3public class SelectorNotFoundException : Exception
 4{
 5    private const string _message = "The specification must have a selector transform defined. Ensure either Select() or
 6
 7    public SelectorNotFoundException()
 38        : base(_message)
 9    {
 310    }
 11
 12    public SelectorNotFoundException(Exception innerException)
 113        : base(_message, innerException)
 14    {
 115    }
 16}

Methods/Properties

.ctor()
.ctor(System.Exception)