using System; using System.Collections.Generic; using System.Text; namespace OpenTK.Graphics { /// /// Identifies a specific OpenGL or OpenGL|ES error. Such exceptions are only thrown /// when OpenGL or OpenGL|ES automatic error checking is enabled - /// property. /// Important: Do *not* catch this exception. Rather, fix the underlying issue that caused the error. /// public class GraphicsErrorException : GraphicsException { /// /// Constructs a new GraphicsErrorException instance with the specified error message. /// /// public GraphicsErrorException(string message) : base(message) { } } }