Bläddra i källkod

Do not wrap exceptions in SshException.

drieseng 9 år sedan
förälder
incheckning
3598fcf3e4
1 ändrade filer med 1 tillägg och 1 borttagningar
  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