00001 #region --- License ---
00002
00003
00004
00005
00006
00007 #endregion
00008
00009 using System;
00010 using System.Collections.Generic;
00011 using System.Text;
00012
00013 namespace OpenTK
00014 {
00016 public class GraphicsException : Exception
00017 {
00019 public GraphicsException() : base() { }
00022 public GraphicsException(string message) : base(message) { }
00023 }
00024 }