SshOperationTimeoutException
The exception that is thrown when operation is timed out.
            
                using System;
namespace Renci.SshNet.Common
{
    public class SshOperationTimeoutException : SshException
    {
        public SshOperationTimeoutException()
        {
        }
        public SshOperationTimeoutException(string message)
            : base(message)
        {
        }
        public SshOperationTimeoutException(string message, Exception innerException)
            : base(message, innerException)
        {
        }
    }
}