Преглед изворни кода

Do not wrap exceptions in SshException.

drieseng пре 9 година
родитељ
комит
3598fcf3e4
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/Renci.SshNet/Common/AsyncResult.cs

+ 1 - 1
src/Renci.SshNet/Common/AsyncResult.cs

@@ -90,7 +90,7 @@ namespace Renci.SshNet.Common
 
             // Operation is done: if an exception occurred, throw it
             if (_exception != null)
-                throw new SshException(_exception.Message, _exception);
+                throw _exception;
         }
 
         #region Implementation of IAsyncResult