using System; using System.Collections.Generic; using System.Text; namespace Intel.Management.Wsman { /// /// An exception that is thrown when an WsMan Sender fault occurs /// public class WsmanSenderException : WsmanException { /// /// Initializes a new instance of the WsmanSenderException class with a message string /// /// The error message string public WsmanSenderException (string message) : base(message) { } /// /// Initializes a new instance of the WsmanSenderException with a message string a inner exception /// /// The error message string /// The inner exception reference public WsmanSenderException(string message, Exception inner) : base(message, inner) { } } }