Subversion Repositories AndroidProjects

Rev

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 a GraphicsContext.
9
    /// </summary>
10
    public class GraphicsContextException : Exception
11
    {
12
        /// <summary>
13
        /// Constructs a new GraphicsContextException.
14
        /// </summary>
15
        public GraphicsContextException() : base() { }
16
        /// <summary>
17
        /// Constructs a new GraphicsContextException with the given error message.
18
        /// </summary>
19
        public GraphicsContextException(string message) : base(message) { }
20
    }
21
}