< Summary

Information
Class: DirectSight.Parser.UnsupportedParserException
Assembly DirectSight
File(s): /home/runner/work/DirectSight/DirectSight/DirectSight/Parser/UnsupportedParserException.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 9
Coverable lines: 9
Total lines: 36
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
.ctor()100%110%
.ctor(...)100%110%
.ctor(...)100%110%

File(s)

/home/runner/work/DirectSight/DirectSight/DirectSight/Parser/UnsupportedParserException.cs

#LineLine coverage
 1using System;
 2
 3namespace DirectSight.Parser;
 4
 5/// <summary>
 6/// Exception indicating that a parser/xml format is not or no longer supported.
 7/// </summary>
 8[Serializable]
 9internal class UnsupportedParserException : Exception
 10{
 11    /// <summary>
 12    /// Initializes a new instance of the <see cref="UnsupportedParserException"/> class.
 13    /// </summary>
 014    public UnsupportedParserException()
 015    {
 016    }
 17
 18    /// <summary>
 19    /// Initializes a new instance of the <see cref="UnsupportedParserException"/> class.
 20    /// </summary>
 21    /// <param name="message">The message.</param>
 22    public UnsupportedParserException(string message)
 023        : base(message)
 024    {
 025    }
 26
 27    /// <summary>
 28    /// Initializes a new instance of the <see cref="UnsupportedParserException"/> class.
 29    /// </summary>
 30    /// <param name="message">The message.</param>
 31    /// <param name="inner">The inner exception.</param>
 32    public UnsupportedParserException(string message, Exception inner)
 033        : base(message, inner)
 034    {
 035    }
 36}