< Summary

Class:DCL.Social.Friends.FriendshipException
Assembly:FriendsController
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/FriendsController/FriendshipException.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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
FriendshipException(...)0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/FriendsController/FriendshipException.cs

#LineLine coverage
 1using System;
 2
 3namespace DCL.Social.Friends
 4{
 5    public class FriendshipException : Exception
 6    {
 07        public FriendRequestErrorCodes ErrorCode { get; }
 8
 09        public FriendshipException(FriendRequestErrorCodes errorCode)
 10        {
 011            ErrorCode = errorCode;
 012        }
 13    }
 14}