mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-08 21:45:33 +00:00
18 lines
577 B
C#
18 lines
577 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Graphics
|
|
{
|
|
/// <summary>
|
|
/// Represents exceptions related to IGraphicsResources.
|
|
/// </summary>
|
|
public class GraphicsResourceException : Exception
|
|
{
|
|
/// <summary>Constructs a new GraphicsResourceException.</summary>
|
|
public GraphicsResourceException() : base() { }
|
|
/// <summary>Constructs a new string with the specified error message.</summary>
|
|
public GraphicsResourceException(string message) : base(message) { }
|
|
}
|
|
}
|