< Summary

Information
Class: MRA.DTO.Exceptions.DocumentNotFoundException
Assembly: MRA.DTO
File(s): D:\a\MiguelRomerART\MiguelRomerART\MRA.DTO\Exceptions\DocumentNotFoundException.cs
Line coverage
33%
Covered lines: 2
Uncovered lines: 4
Coverable lines: 6
Total lines: 19
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)

D:\a\MiguelRomerART\MiguelRomerART\MRA.DTO\Exceptions\DocumentNotFoundException.cs

#LineLine coverage
 1
 2namespace MRA.DTO.Exceptions;
 3
 4public abstract class DocumentNotFoundException : Exception
 5{
 06    public DocumentNotFoundException()
 7    {
 08    }
 9
 10    public DocumentNotFoundException(string message)
 811        : base(message)
 12    {
 813    }
 14
 15    public DocumentNotFoundException(string message, Exception inner)
 016        : base(message, inner)
 17    {
 018    }
 19}