ClassiCube/OpenTK/Graphics/GraphicsModeException.cs
2016-06-11 15:29:45 +10:00

15 lines
515 B
C#

using System;
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) { }
}
}