mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-22 20:19:09 -04:00
15 lines
515 B
C#
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) { }
|
|
}
|
|
}
|