commit | 8630eb9cf23bd734b1b979cebef83186cb5c1e24 | [log] [tgz] |
---|---|---|
author | Jens Geyer <jensg@apache.org> | Sun Jan 20 11:33:35 2019 +0100 |
committer | Jens Geyer <jensg@apache.org> | Sun Jan 20 11:35:17 2019 +0100 |
tree | 884c7b7e41d8a11934fc09f2ca65d676319d1aac | |
parent | 67df34afa782be67154034b31e4ad7cb3834fed1 [diff] [blame] |
THRIFT-4741 Missing "inner" argument from one CTOR Client: C# Patch: Jens Geyer This closes #1696
diff --git a/lib/csharp/src/Protocol/TProtocolException.cs b/lib/csharp/src/Protocol/TProtocolException.cs index b81db1a..41c26a3 100644 --- a/lib/csharp/src/Protocol/TProtocolException.cs +++ b/lib/csharp/src/Protocol/TProtocolException.cs
@@ -43,7 +43,7 @@ } public TProtocolException(int type, Exception inner = null) - : base(inner) + : base(string.Empty,inner) { type_ = type; }