13 lines
327 B
C#
13 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Intel.Management.Wsman
|
|
{
|
|
public class WsmanException : System.Exception
|
|
{
|
|
public WsmanException(string message) : base(message) { }
|
|
public WsmanException(string message, Exception inner) : base(message, inner) { }
|
|
}
|
|
}
|