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