< Summary

Information
Class: Spdx3.Exceptions.Spdx3Exception
Assembly: Spdx3
File(s): /home/runner/work/Spdx3/Spdx3/Spdx3/Exceptions/Spdx3Exception.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 15
Line coverage: 100%
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%11100%
.ctor(...)100%11100%

File(s)

/home/runner/work/Spdx3/Spdx3/Spdx3/Exceptions/Spdx3Exception.cs

#LineLine coverage
 1namespace Spdx3.Exceptions;
 2
 3/// <summary>
 4///     Base class for all exceptions created by Spdx3
 5/// </summary>
 6public class Spdx3Exception : ApplicationException
 7{
 738    public Spdx3Exception(string message) : base(message)
 9    {
 7310    }
 11
 1712    public Spdx3Exception(string message, Exception innerException) : base(message, innerException)
 13    {
 1714    }
 15}