mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
14 lines
335 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |