using System;
namespace OpenTK.Graphics {
/// Represents errors related to unavailable graphics parameters.
public class GraphicsModeException : Exception {
/// Constructs a new GraphicsModeException.
public GraphicsModeException() : base() { }
/// Constructs a new GraphicsModeException with the given error message.
public GraphicsModeException(string message) : base(message) { }
}
}