< Summary - ReFlex - Library

Information
Class: ReFlex.Core.Common.Exceptions.ArraysWithDifferentSizesException
Assembly: ReFlex.Core.Common
File(s): D:\a\reflex\reflex\library\src\Core\Common\Exceptions\ArraysWithDifferentSizesException.cs
Line coverage
50%
Covered lines: 1
Uncovered lines: 1
Coverable lines: 2
Total lines: 25
Line coverage: 50%
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%210%

File(s)

D:\a\reflex\reflex\library\src\Core\Common\Exceptions\ArraysWithDifferentSizesException.cs

#LineLine coverage
 1using System;
 2
 3namespace ReFlex.Core.Common.Exceptions
 4{
 5    /// <inheritdoc />
 6    /// <summary>
 7    /// Is thrown if two arrays have different sizes.
 8    /// </summary>
 9    /// <seealso cref="Exception" />
 10    public class ArraysWithDifferentSizesException : Exception
 11    {
 12        /// <inheritdoc />
 13        /// <summary>
 14        /// Initializes a new instance of the <see cref="ArraysWithDifferentSizesException" /> class.
 15        /// </summary>
 2716        public ArraysWithDifferentSizesException() { }
 17
 18        /// <inheritdoc />
 19        /// <summary>
 20        /// Initializes a new instance of the <see cref="ArraysWithDifferentSizesException" /> class.
 21        /// </summary>
 22        /// <param name="message">The message describing the error.</param>
 023        public ArraysWithDifferentSizesException(string message) : base(message) { }
 24    }
 25}

Methods/Properties

.ctor()
.ctor(System.String)