14 lines
363 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Intel.Management.Wsman
{
public class WsmanInvokeException : WsmanException
{
public WsmanInvokeException (string message) : base(message) { }
public WsmanInvokeException(string message, Exception inner) : base(message, inner) { }
}
}