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

Giorgi / DuckDB.NET / 10773748422

09 Sep 2024 01:01PM UTC coverage: 89.795% (-0.2%) from 89.997%
10773748422

push

github

Giorgi
Merge branch 'nightly-builds' into develop

920 of 1056 branches covered (87.12%)

Branch coverage included in aggregate %.

192 of 232 new or added lines in 23 files covered. (82.76%)

5 existing lines in 3 files now uncovered.

1887 of 2070 relevant lines covered (91.16%)

897099.16 hits per line

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

62.5
/DuckDB.NET.Data/DuckDBException.cs
1
using System.Data.Common;
2
using System.Runtime.Serialization;
3
using DuckDB.NET.Native;
4

5
namespace DuckDB.NET.Data;
6

7
public class DuckDBException : DbException
8
{
NEW
9
    public DuckDBErrorType ErrorType { get; }
×
10

UNCOV
11
    internal DuckDBException()
×
12
    {
13
    }
×
14

15
#if !NET8_0_OR_GREATER
16
    internal DuckDBException(SerializationInfo info, StreamingContext context) : base(info, context)
17
    {
18
    }
19
#endif
20

21
    internal DuckDBException(string message) : base(message)
18✔
22
    {
23
    }
18✔
24

25
    internal DuckDBException(string message, DuckDBErrorType errorType) : base(message, (int)errorType)
24✔
26
    {
27
        ErrorType = errorType;
24✔
28
    }
24✔
29
}
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