Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- YdbOperationInProgressException extends YdbException

## v0.7.1
- If an error happened in the transaction, allow one empty rollback

Expand Down
2 changes: 1 addition & 1 deletion src/Ydb.Sdk/src/Ado/YdbException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public YdbException(Status status) : base(status.ToString())
public StatusCode Code { get; }
}

public class YdbOperationInProgressException : DbException
public class YdbOperationInProgressException : YdbException
{
public YdbOperationInProgressException(YdbConnection ydbConnection)
: base("A command is already in progress: " + ydbConnection.LastCommand)
Expand Down
Loading