using System;
namespace WindowsDisplayAPI.Exceptions
{
///
/// Represents errors that occurs because of two similar but not identical path or path target
///
public class DuplicateModeException : Exception
{
///
/// Creates a new DuplicateModeException exception
///
/// The human readable message of the exception
public DuplicateModeException(string message) : base(message)
{
}
}
}