< Summary

Class:SVETA.Api.Helpers.Authorize.ForbidException
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Helpers/Authorize/ForbidException.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:19
Line coverage:0% (0 of 6)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
.ctor()0%100%
.ctor(...)0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Helpers/Authorize/ForbidException.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace SVETA.Api.Helpers.Authorize
 7{
 8    public class ForbidException: Exception
 9    {
 010        public ForbidException(): base()
 011        {
 12
 013        }
 014        public ForbidException(string message): base(message)
 015        {
 16
 017        }
 18    }
 19}

Methods/Properties

.ctor()
.ctor(...)