Files
archived-g-helper/app/NvAPIWrapper/Native/Exceptions/NVIDIANotSupportedException.cs
2023-05-06 14:40:52 +02:00

14 lines
335 B
C#

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