We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19f819c commit 1af5757Copy full SHA for 1af5757
CHANGELOG.md
@@ -1,3 +1,5 @@
1
+- YdbOperationInProgressException extends YdbException
2
+
3
## v0.7.1
4
- If an error happened in the transaction, allow one empty rollback
5
src/Ydb.Sdk/src/Ado/YdbException.cs
@@ -29,7 +29,7 @@ public YdbException(Status status) : base(status.ToString())
29
public StatusCode Code { get; }
30
}
31
32
-public class YdbOperationInProgressException : DbException
+public class YdbOperationInProgressException : YdbException
33
{
34
public YdbOperationInProgressException(YdbConnection ydbConnection)
35
: base("A command is already in progress: " + ydbConnection.LastCommand)
0 commit comments