< Summary

Information
Class: MRA.Infrastructure.Exceptions.Excel.ExcelColumnNotFoundException
Assembly: MRA.Infrastructure
File(s): D:\a\MiguelRomerART\MiguelRomerART\MRA.Infrastructure\Exceptions\Excel\ExcelColumnNotFoundException.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 18
Line coverage: 0%
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%210%
.ctor(...)100%210%

File(s)

D:\a\MiguelRomerART\MiguelRomerART\MRA.Infrastructure\Exceptions\Excel\ExcelColumnNotFoundException.cs

#LineLine coverage
 1namespace MRA.Infrastructure.Exceptions.Excel;
 2
 3public class ExcelColumnNotFoundException : Exception
 4{
 05    public ExcelColumnNotFoundException()
 6    {
 07    }
 8
 9    public ExcelColumnNotFoundException(string message)
 010        : base(message)
 11    {
 012    }
 13
 14    public ExcelColumnNotFoundException(string message, Exception inner)
 015        : base(message, inner)
 16    {
 017    }
 18}