Skip to content

Commit e050a23

Browse files
Update CHANGELOG.md
1 parent dcda43e commit e050a23

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Ydb.Sdk/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- Fixed YdbException: propagate inner exception.
2+
13
## v0.18.1
24

35
- Fixed bug: 'System.DateOnly' is not supported by YdbParameter ([#449](https://github.com/ydb-platform/ydb-dotnet-sdk/issues/449)).

src/Ydb.Sdk/src/Driver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ internal InitializationFailureException(string message) : base(message)
185185

186186
public class TransportException : IOException
187187
{
188-
internal TransportException(RpcException e) : base("Transport exception", e)
188+
internal TransportException(RpcException e) : base("Transport RPC call error", e)
189189
{
190190
Status = e.Status.ConvertStatus();
191191
}

0 commit comments

Comments
 (0)