Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1452 | chris | 1 | #region --- License --- |
| 2 | /* Licensed under the MIT/X11 license. |
||
| 3 | * Copyright (c) 2006-2008 the OpenTK team. |
||
| 4 | * This notice may not be removed. |
||
| 5 | * See license.txt for licensing detailed licensing details. |
||
| 6 | */ |
||
| 7 | #endregion |
||
| 8 | |||
| 9 | using System; |
||
| 10 | using System.Collections.Generic; |
||
| 11 | using System.Text; |
||
| 12 | |||
| 13 | namespace OpenTK |
||
| 14 | { |
||
| 15 | /// <summary>Represents errors related to Graphics operations.</summary> |
||
| 16 | public class GraphicsException : Exception |
||
| 17 | { |
||
| 18 | /// <summary>Constructs a new GraphicsException.</summary> |
||
| 19 | public GraphicsException() : base() { } |
||
| 20 | /// <summary>Constructs a new GraphicsException with the specified excpetion message.</summary> |
||
| 21 | /// <param name="message"></param> |
||
| 22 | public GraphicsException(string message) : base(message) { } |
||
| 23 | } |
||
| 24 | } |