using System;
namespace WindowsDisplayAPI.Exceptions
{
///
/// Represents errors that occurs because of missing or invalid EDID information
///
public class InvalidEDIDInformation : Exception
{
///
/// Creates a new InvalidEDIDInformation exception
///
/// The human readable message of the exception
public InvalidEDIDInformation(string message) : base(message)
{
}
}
}