using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Graphics
{
///
/// Represents errors related to a GraphicsContext.
///
public class GraphicsContextException : Exception
{
///
/// Constructs a new GraphicsContextException.
///
public GraphicsContextException() : base() { }
///
/// Constructs a new GraphicsContextException with the given error message.
///
public GraphicsContextException(string message) : base(message) { }
}
}