Skip to content

Commit 1af5757

Browse files
dev: YdbOperationInProgressException extends YdbException (#191)
1 parent 19f819c commit 1af5757

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- YdbOperationInProgressException extends YdbException
2+
13
## v0.7.1
24
- If an error happened in the transaction, allow one empty rollback
35

src/Ydb.Sdk/src/Ado/YdbException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public YdbException(Status status) : base(status.ToString())
2929
public StatusCode Code { get; }
3030
}
3131

32-
public class YdbOperationInProgressException : DbException
32+
public class YdbOperationInProgressException : YdbException
3333
{
3434
public YdbOperationInProgressException(YdbConnection ydbConnection)
3535
: base("A command is already in progress: " + ydbConnection.LastCommand)

0 commit comments

Comments
 (0)