You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2012/02/22 08:08:37 UTC

svn commit: r1292148 - /thrift/trunk/lib/csharp/src/Protocol/TProtocolException.cs

Author: roger
Date: Wed Feb 22 07:08:36 2012
New Revision: 1292148

URL: http://svn.apache.org/viewvc?rev=1292148&view=rev
Log:
THRIFT-1516 TProtocolException in C# should be public
Patch: Stefan Gmeiner

Modified:
    thrift/trunk/lib/csharp/src/Protocol/TProtocolException.cs

Modified: thrift/trunk/lib/csharp/src/Protocol/TProtocolException.cs
URL: http://svn.apache.org/viewvc/thrift/trunk/lib/csharp/src/Protocol/TProtocolException.cs?rev=1292148&r1=1292147&r2=1292148&view=diff
==============================================================================
--- thrift/trunk/lib/csharp/src/Protocol/TProtocolException.cs (original)
+++ thrift/trunk/lib/csharp/src/Protocol/TProtocolException.cs Wed Feb 22 07:08:36 2012
@@ -25,7 +25,7 @@ using System;
 
 namespace Thrift.Protocol
 {
-	class TProtocolException : Exception
+	public class TProtocolException : Exception
 	{
 		public const int UNKNOWN = 0;
 		public const int INVALID_DATA = 1;