< Summary

Class:SharpHoundCommonLib.Exceptions.LdapAuthenticationException
Assembly:SharpHoundCommonLib
File(s):D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\Exceptions\LdapAuthenticationException.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:14
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

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

File(s)

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

#LineLine coverage
 1using System;
 2using System.DirectoryServices.Protocols;
 3
 4namespace SharpHoundCommonLib.Exceptions
 5{
 6    internal class LdapAuthenticationException : Exception
 7    {
 8        public readonly LdapException LdapException;
 09        public LdapAuthenticationException(LdapException exception) : base("Error authenticating to LDAP", exception)
 010        {
 011            LdapException = exception;
 012        }
 13    }
 14}