< Summary

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

#LineLine coverage
 1namespace MUNity.Database.FluentAPI;
 2
 3[System.Serializable]
 4public class ConferenceNotFoundException : System.Exception
 5{
 06    public ConferenceNotFoundException() { }
 07    public ConferenceNotFoundException(string message) : base(message) { }
 08    public ConferenceNotFoundException(string message, System.Exception inner) : base(message, inner) { }
 9    protected ConferenceNotFoundException(
 10      System.Runtime.Serialization.SerializationInfo info,
 011      System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
 12}