| 123456789101112131415161718192021222324252627282930313233343536 | using System;namespace Renci.SshNet.Common{    /// <summary>    /// The exception that is thrown when operation is timed out.    /// </summary>    public partial class SshOperationTimeoutException : SshException    {        /// <summary>        /// Initializes a new instance of the <see cref="SshOperationTimeoutException"/> class.        /// </summary>        public SshOperationTimeoutException()        {        }        /// <summary>        /// Initializes a new instance of the <see cref="SshOperationTimeoutException"/> class.        /// </summary>        /// <param name="message">The message.</param>        public SshOperationTimeoutException(string message)            : base(message)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="SshOperationTimeoutException"/> class.        /// </summary>        /// <param name="message">The message.</param>        /// <param name="innerException">The inner exception.</param>        public SshOperationTimeoutException(string message, Exception innerException) :            base(message, innerException)        {        }    }}
 |