< Summary

Class:MUNity.Database.FluentAPI.OrganizationRoleNotFoundException
Assembly:MUNity.Database
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\FluentAPI\Exceptions\OrganizationRoleNotFoundException.cs
Covered lines:1
Uncovered lines:3
Coverable lines:4
Total lines:14
Line coverage:25% (1 of 4)
Covered branches:0
Total branches:0
Covered methods:1
Total methods:4
Method coverage:25% (1 of 4)

Metrics

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

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNityDatabase\FluentAPI\Exceptions\OrganizationRoleNotFoundException.cs

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