00001 using System; 00002 using System.Collections.Generic; 00003 using System.Text; 00004 00005 namespace OpenTK.Graphics 00006 { 00011 public class GraphicsContextMissingException : GraphicsContextException 00012 { 00016 public GraphicsContextMissingException() 00017 : base(String.Format( 00018 "No context is current in the calling thread (ThreadId: {0}).", 00019 System.Threading.Thread.CurrentThread.ManagedThreadId)) 00020 { } 00021 } 00022 }