< Summary

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

#LineLine coverage
 1namespace Pozitron.QuerySpecification;
 2
 3/// <summary>
 4/// Exception thrown when concurrent selectors are defined in the specification.
 5/// </summary>
 6public class ConcurrentSelectorsException : Exception
 7{
 8    private const string _message = "Concurrent specification selector transforms defined. Ensure only one of the Select
 9
 10    /// <summary>
 11    /// Initializes a new instance of the <see cref="ConcurrentSelectorsException"/> class.
 12    /// </summary>
 13    public ConcurrentSelectorsException()
 114        : base(_message)
 15    {
 116    }
 17
 18    /// <summary>
 19    /// Initializes a new instance of the <see cref="ConcurrentSelectorsException"/> class with a specified inner except
 20    /// </summary>
 21    /// <param name="innerException">The exception that is the cause of this exception.</param>
 22    public ConcurrentSelectorsException(Exception innerException)
 123        : base(_message, innerException)
 24    {
 125    }
 26}

Methods/Properties

.ctor()
.ctor(System.Exception)