< Summary

Class:SharpHoundCommonLib.Exceptions.LDAPQueryException
Assembly:SharpHoundCommonLib
File(s):D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\Exceptions\LDAPQueryException.cs
Covered lines:6
Uncovered lines:3
Coverable lines:9
Total lines:19
Line coverage:66.6% (6 of 9)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
.ctor()100%100%
.ctor(...)100%10100%
.ctor(...)100%10100%

File(s)

D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\Exceptions\LDAPQueryException.cs

#LineLine coverage
 1using System;
 2
 3namespace SharpHoundCommonLib.Exceptions
 4{
 5    public class LDAPQueryException : Exception
 6    {
 07        public LDAPQueryException()
 08        {
 09        }
 10
 511        public LDAPQueryException(string message) : base(message)
 512        {
 513        }
 14
 215        public LDAPQueryException(string message, Exception inner) : base(message, inner)
 216        {
 217        }
 18    }
 19}