commit | 6e67faa92827ece022380b211c2caaadd6145bf5 | [log] [tgz] |
---|---|---|
author | Jens Geyer <jensg@apache.org> | Mon Aug 06 23:31:38 2018 +0200 |
committer | Jens Geyer <jensg@apache.org> | Tue Aug 07 23:28:49 2018 +0200 |
tree | a425bf17fbd52b26f2332855759f03a407fc53bf | |
parent | 831819c5634627c8dfb5c3db777855bebac66a77 [diff] [blame] |
THRIFT-4609 keep InnerException wherever appropriate Client: C# Patch: Jens Geyer This closes #1576
diff --git a/lib/csharp/src/TException.cs b/lib/csharp/src/TException.cs index 35193c5..aa9a210 100644 --- a/lib/csharp/src/TException.cs +++ b/lib/csharp/src/TException.cs
@@ -31,8 +31,8 @@ { } - public TException(string message) - : base(message) + public TException(string message, Exception inner) + : base(message, inner) { }