using System; namespace NvAPIWrapper.Native.Exceptions { /// /// Represents errors that raised by NvAPIWrapper /// public class NVIDIANotSupportedException : NotSupportedException { internal NVIDIANotSupportedException(string message) : base(message) { } } }