< Summary

Information
Class: Fluorite.Strainer.Exceptions.StrainerNotFoundException
Assembly: Fluorite.Strainer
File(s): /builds/fluorite/strainer/src/Strainer/Exceptions/StrainerNotFoundException.cs
Line coverage
30%
Covered lines: 3
Uncovered lines: 7
Coverable lines: 10
Total lines: 21
Line coverage: 30%
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%210%
.ctor(...)100%11100%
.ctor(...)100%210%
get_Name()100%210%

File(s)

/builds/fluorite/strainer/src/Strainer/Exceptions/StrainerNotFoundException.cs

#LineLine coverage
 1namespace Fluorite.Strainer.Exceptions;
 2
 3public abstract class StrainerNotFoundException : StrainerException
 4{
 05    protected StrainerNotFoundException(string name)
 6    {
 07        Name = Guard.Against.Null(name);
 08    }
 9
 310    protected StrainerNotFoundException(string name, string message) : base(message)
 11    {
 312        Name = Guard.Against.Null(name);
 313    }
 14
 015    protected StrainerNotFoundException(string name, string message, Exception innerException) : base(message, innerExce
 16    {
 017        Name = Guard.Against.Null(name);
 018    }
 19
 020    public string Name { get; }
 21}