mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 17:25:37 +00:00
22 lines
640 B
C#
22 lines
640 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenTK.Graphics
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Represents errors related to unavailable graphics parameters.
|
|||
|
/// </summary>
|
|||
|
public class GraphicsModeException : Exception
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Constructs a new GraphicsModeException.
|
|||
|
/// </summary>
|
|||
|
public GraphicsModeException() : base() { }
|
|||
|
/// <summary>
|
|||
|
/// Constructs a new GraphicsModeException with the given error message.
|
|||
|
/// </summary>
|
|||
|
public GraphicsModeException(string message) : base(message) { }
|
|||
|
}
|
|||
|
}
|