Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1452 | chris | 1 | using System; |
| 2 | using System.Collections.Generic; |
||
| 3 | using System.Text; |
||
| 4 | |||
| 5 | namespace OpenTK.Graphics |
||
| 6 | { |
||
| 7 | /// <summary> |
||
| 8 | /// Represents errors related to unavailable graphics parameters. |
||
| 9 | /// </summary> |
||
| 10 | public class GraphicsModeException : Exception |
||
| 11 | { |
||
| 12 | /// <summary> |
||
| 13 | /// Constructs a new GraphicsModeException. |
||
| 14 | /// </summary> |
||
| 15 | public GraphicsModeException() : base() { } |
||
| 16 | /// <summary> |
||
| 17 | /// Constructs a new GraphicsModeException with the given error message. |
||
| 18 | /// </summary> |
||
| 19 | public GraphicsModeException(string message) : base(message) { } |
||
| 20 | } |
||
| 21 | } |