Do not wrap exceptions in SshException.

This commit is contained in:
drieseng
2016-07-26 19:51:06 +02:00
parent db0300e00c
commit 3598fcf3e4
+1 -1
View File
@@ -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