using System; namespace Renci.SshNet.Common { /// /// The exception that is thrown when operation is timed out. /// public partial class SshOperationTimeoutException : SshException { /// /// Initializes a new instance of the class. /// public SshOperationTimeoutException() { } /// /// Initializes a new instance of the class. /// /// The message. public SshOperationTimeoutException(string message) : base(message) { } /// /// Initializes a new instance of the class. /// /// The message. /// The inner exception. public SshOperationTimeoutException(string message, Exception innerException) : base(message, innerException) { } } }