< Summary

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

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