< Summary - SonghayCore

Information
Class: Songhay.Exceptions.CsvParseException
Assembly: SonghayCore
File(s): /home/rasx/sourceRoot/SonghayCore/SonghayCore/Exceptions/CsvParseException.cs
Line coverage
33%
Covered lines: 3
Uncovered lines: 6
Coverable lines: 9
Total lines: 35
Line coverage: 33.3%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
.ctor(...)100%10%
.ctor(...)100%10%
.ctor(...)100%1100%

File(s)

/home/rasx/sourceRoot/SonghayCore/SonghayCore/Exceptions/CsvParseException.cs

#LineLine coverage
 1namespace Songhay.Exceptions;
 2
 3/// <summary>
 4/// Exception for CSV parsing
 5/// in <see cref="Songhay.Extensions.StringExtensions.CsvSplit"/>.
 6/// </summary>
 7[Serializable]
 8public class CsvParseException : Exception
 9{
 10    /// <summary>
 11    /// Initializes a new instance of the <see cref="CsvParseException"/> class.
 12    /// </summary>
 13    /// <param name="message">The message.</param>
 14    /// <param name="innerException">The inner exception.</param>
 015    public CsvParseException(string message, Exception innerException) : base(message, innerException)
 016    {
 017    }
 18
 19    /// <summary>
 20    /// Initializes a new instance of the <see cref="CsvParseException"/> class.
 21    /// </summary>
 22    /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized 
 23    /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual
 024    protected CsvParseException(SerializationInfo info, StreamingContext context) : base(info, context)
 025    {
 026    }
 27
 28    /// <summary>
 29    /// Initializes a new instance of the <see cref="CsvParseException"/> class.
 30    /// </summary>
 31    /// <param name="message">The message.</param>
 332    public CsvParseException(string message) : base(message)
 333    {
 334    }
 35}