• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

net-daemon / netdaemon / 6594659689

19 Oct 2023 05:58PM UTC coverage: 80.941% (-0.3%) from 81.222%
6594659689

push

github

web-flow
Fix alot of warnings (#956)

811 of 1148 branches covered (0.0%)

Branch coverage included in aggregate %.

28 of 28 new or added lines in 15 files covered. (100.0%)

2939 of 3485 relevant lines covered (84.33%)

50.62 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

40.0
/src/Client/NetDaemon.HassClient/Common/Exceptions/HomeAssistantApiCallException.cs
1
using System.Net;
2

3
namespace NetDaemon.Client.Internal.Exceptions;
4

5
[SuppressMessage("", "RCS1194")]
6
public class HomeAssistantApiCallException : ApplicationException
7
{
8
    public HttpStatusCode Code { get; private set; }
6✔
9
    public HomeAssistantApiCallException(string? message, HttpStatusCode code) : base(message)
3✔
10
    {
11
        Code = code;
3✔
12
    }
3✔
13

14
    public HomeAssistantApiCallException()
×
15
    {
16
    }
×
17

18
    public HomeAssistantApiCallException(string message) : base(message)
×
19
    {
20
    }
×
21

22
    public HomeAssistantApiCallException(string message, Exception innerException) : base(message, innerException)
×
23
    {
24
    }
×
25
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc