commit | 35d62edd6e9ff84b0fdd472e132a739b663a41c2 | [log] [tgz] |
---|---|---|
author | Jens Geyer <jensg@apache.org> | Sat Feb 10 10:11:08 2018 +0100 |
committer | Jens Geyer <jensg@apache.org> | Sat Feb 10 19:24:18 2018 +0100 |
tree | c2448c320e444dd5cc5a1cd7ccf05495047e2f30 | |
parent | 33d30fcbb91558068a4012e2444b01385fdd338c [diff] [blame] |
THRIFT-4492 protected ExceptionType type member of TApplicationException cannot be accessed Client: C# Patch: Jens Geyer This closes #1493
diff --git a/lib/csharp/src/TApplicationException.cs b/lib/csharp/src/TApplicationException.cs index 4c0d3a3..409aa4d 100644 --- a/lib/csharp/src/TApplicationException.cs +++ b/lib/csharp/src/TApplicationException.cs
@@ -137,5 +137,10 @@ InvalidProtocol, UnsupportedClientType } + + public ExceptionType Type + { + get { return type; } + } } }