using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Intel.Management.Wsman
{
///
/// An exception that is thrown when the request string in invalid
///
public class WsmanQueryFormatException : WsmanException
{
///
/// Initializes a new instance of the WsmanQueryFormatException class with a message string
///
/// The error message string
public WsmanQueryFormatException(string message) : base(message) { }
///
/// Initializes a new instance of the WsmanQueryFormatException class with a message string a inner exception
///
/// The error message string
/// The inner exception reference
public WsmanQueryFormatException(string message, Exception inner) : base(message, inner) { }
}
}