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 dcda43e commit e050a23Copy full SHA for e050a23
src/Ydb.Sdk/CHANGELOG.md
@@ -1,3 +1,5 @@
1
+- Fixed YdbException: propagate inner exception.
2
+
3
## v0.18.1
4
5
- 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
@@ -185,7 +185,7 @@ internal InitializationFailureException(string message) : base(message)
185
186
public class TransportException : IOException
187
{
188
- internal TransportException(RpcException e) : base("Transport exception", e)
+ internal TransportException(RpcException e) : base("Transport RPC call error", e)
189
190
Status = e.Status.ConvertStatus();
191
}
0 commit comments