using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Intel.Management.Wsman { /// /// //An exception that is thrown when a Wsman service cannot find the requested item /// public class WsmanUnreachableException : WsmanSenderException { /// /// Initializes a new instance of the WsmanUnreachableException class with a message string /// /// The error message string public WsmanUnreachableException (string message) : base(message) { } /// /// Initializes a new instance of the WsmanUnreachableException class with a message string a inner exception /// /// The error message string /// The inner exception reference public WsmanUnreachableException(string message, Exception inner) : base(message, inner) { } } }