diff options
Diffstat (limited to 'csharp/src/Ice/OutgoingAsync.cs')
-rw-r--r-- | csharp/src/Ice/OutgoingAsync.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/csharp/src/Ice/OutgoingAsync.cs b/csharp/src/Ice/OutgoingAsync.cs index 22c8966020a..0f376ede850 100644 --- a/csharp/src/Ice/OutgoingAsync.cs +++ b/csharp/src/Ice/OutgoingAsync.cs @@ -347,7 +347,7 @@ namespace IceInternal // if(userThread) { - throw ex; + throw; } Ice.AsyncCallback cb = finished(ex); // No retries, we're done if(cb != null) @@ -775,10 +775,10 @@ namespace IceInternal _is.startEncapsulation(); _is.throwException(null); } - catch(Ice.UserException ex) + catch(Ice.UserException) { _is.endEncapsulation(); - throw ex; + throw; } } @@ -868,10 +868,10 @@ namespace IceInternal } Debug.Assert(sentCB == null); } - catch(Ice.LocalException ex) + catch(Ice.LocalException) { doCheck(false); - throw ex; + throw; } } |