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