< Summary

Class:MUNity.Exceptions.Resolution.OperativeParagraphNotFoundException
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Exceptions\Resolution\OperativeParagraphNotFound.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:41
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:4
Method coverage:0% (0 of 4)

Metrics

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

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Exceptions\Resolution\OperativeParagraphNotFound.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Exceptions.Resolution
 6{
 7
 8    /// <summary>
 9    /// Throw this exception when an operative section is not found inside the OperativeSection.
 10    /// </summary>
 11    [Serializable]
 12    public class OperativeParagraphNotFoundException : Exception
 13    {
 14        /// <summary>
 15        /// Base exception of an operative paragraph could not be found
 16        /// </summary>
 017        public OperativeParagraphNotFoundException() { }
 18
 19        /// <summary>
 20        /// Operative paragraph cannot be found inside the operative section with a message
 21        /// </summary>
 22        /// <param name="message"></param>
 023        public OperativeParagraphNotFoundException(string message) : base(message) { }
 24
 25        /// <summary>
 26        /// Paragraph cannot be found with a message and an inner exception.
 27        /// </summary>
 28        /// <param name="message"></param>
 29        /// <param name="inner"></param>
 030        public OperativeParagraphNotFoundException(string message, Exception inner) : base(message, inner) { }
 31
 32        /// <summary>
 33        /// General info.
 34        /// </summary>
 35        /// <param name="info"></param>
 36        /// <param name="context"></param>
 37        protected OperativeParagraphNotFoundException(
 38          System.Runtime.Serialization.SerializationInfo info,
 039          System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
 40    }
 41}