< Summary

Information
Class: NGql.Core.Exceptions.QueryMergeException
Assembly: NGql.Core
File(s): /home/runner/work/NGql/NGql/src/Core/Exceptions/QueryMergeException.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 15
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/NGql/NGql/src/Core/Exceptions/QueryMergeException.cs

#LineLine coverage
 1namespace NGql.Core.Exceptions;
 2
 3/// <summary>
 4/// Exception thrown when query merging fails
 5/// </summary>
 6public class QueryMergeException : Exception
 7{
 98    public QueryMergeException(string message) : base(message)
 9    {
 910    }
 11
 912    public QueryMergeException(string message, Exception innerException) : base(message, innerException)
 13    {
 914    }
 15}