< Summary

Class:MUNity.Database.FluentAPI.CommitteeNotFoundException
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\FluentAPI\Exceptions\CommitteeNotFoundException.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:14
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\MUNityDatabase\FluentAPI\Exceptions\CommitteeNotFoundException.cs

#LineLine coverage
 1using System;
 2
 3namespace MUNity.Database.FluentAPI;
 4
 5[Serializable]
 6public class CommitteeNotFoundException : Exception
 7{
 08    public CommitteeNotFoundException() { }
 09    public CommitteeNotFoundException(string message) : base(message) { }
 010    public CommitteeNotFoundException(string message, Exception inner) : base(message, inner) { }
 11    protected CommitteeNotFoundException(
 12      System.Runtime.Serialization.SerializationInfo info,
 013      System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
 14}