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

DemoBytom / DemoEngine / 17778636268

16 Sep 2025 08:48PM UTC coverage: 24.615%. Remained the same
17778636268

push

coveralls.net

web-flow
Merge pull request #450 from DemoBytom/dependabot/dotnet_sdk/develop/dotnet-sdk-9.0.305

Bump dotnet-sdk from 9.0.300 to 9.0.305

96 of 390 relevant lines covered (24.62%)

146584.58 hits per line

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

0.0
/src/Demo.Engine.Core/Exceptions/GraphicsException.cs
1
// Copyright © Michał Dembski and contributors.
2
// Distributed under MIT license. See LICENSE file in the root for more information.
3

4
using Demo.Engine.Core.Interfaces;
5

6
namespace Demo.Engine.Core.Exceptions;
7

8
public class GraphicsException : Exception
9
{
10
    public DebugLayerMessage[] LoggedErrors;
11

12
    public GraphicsException(DebugLayerMessage[] loggedErrors)
×
13
        => LoggedErrors = loggedErrors;
×
14

15
    public GraphicsException(string? message, DebugLayerMessage[] loggedErrors)
16
        : base(message)
×
17
        => LoggedErrors = loggedErrors;
×
18

19
    public GraphicsException(string? message, DebugLayerMessage[] loggedErrors, Exception? innerException)
20
        : base(message, innerException)
×
21
        => LoggedErrors = loggedErrors;
×
22

23
    public GraphicsException()
24
        : this(Array.Empty<DebugLayerMessage>())
×
25
    {
26
    }
×
27

28
    public GraphicsException(string? message)
29
        : this(message, Array.Empty<DebugLayerMessage>())
×
30
    {
31
    }
×
32

33
    public GraphicsException(string? message, Exception? innerException)
34
    : this(message, Array.Empty<DebugLayerMessage>(), innerException)
×
35
    {
36
    }
×
37
}
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

© 2025 Coveralls, Inc