mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-22 18:15:05 +00:00
20 lines
567 B
C#
20 lines
567 B
C#
using System;
|
|
|
|
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) { }
|
|
}
|
|
}
|