Przeglądaj źródła

Do not wrap exceptions in SshException.

drieseng 9 lat temu
rodzic
commit
3598fcf3e4
1 zmienionych plików z 1 dodań i 1 usunięć
  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