< Summary

Information
Class: Fluorite.Strainer.Exceptions.StrainerFilterNotFoundException
Assembly: Fluorite.Strainer
File(s): /builds/fluorite/strainer/src/Strainer/Exceptions/StrainerFilterNotFoundException.cs
Line coverage
33%
Covered lines: 2
Uncovered lines: 4
Coverable lines: 6
Total lines: 16
Line coverage: 33.3%
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%

File(s)

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

#LineLine coverage
 1namespace Fluorite.Strainer.Exceptions;
 2
 3public class StrainerFilterNotFoundException : StrainerNotFoundException
 4{
 05    public StrainerFilterNotFoundException(string name) : base(name)
 6    {
 07    }
 8
 29    public StrainerFilterNotFoundException(string name, string message) : base(name, message)
 10    {
 211    }
 12
 013    public StrainerFilterNotFoundException(string name, string message, Exception innerException) : base(name, message, 
 14    {
 015    }
 16}