using System;
namespace WindowsDisplayAPI.Exceptions
{
///
/// Represents errors that occurs because of not being in a valid clone group
///
public class NotACloneMemberException : Exception
{
///
/// Creates a new NotACloneMemberException
///
/// The human readable message of the exception
public NotACloneMemberException(string message) : base(message)
{
}
}
}