2009-02-22 11:43:35 +01:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Licensed under the MIT/X11 license.
|
|
|
|
|
* Copyright (c) 2006-2008 the OpenTK team.
|
|
|
|
|
* This notice may not be removed.
|
|
|
|
|
* See license.txt for licensing detailed licensing details.
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2009-08-14 15:13:28 +02:00
|
|
|
|
namespace OpenTK
|
2009-02-22 11:43:35 +01:00
|
|
|
|
{
|
2009-08-14 15:13:28 +02:00
|
|
|
|
/// <summary>Represents errors related to Graphics operations.</summary>
|
|
|
|
|
public class GraphicsException : Exception
|
2009-02-22 11:43:35 +01:00
|
|
|
|
{
|
2009-08-14 15:13:28 +02:00
|
|
|
|
/// <summary>Constructs a new GraphicsException.</summary>
|
|
|
|
|
public GraphicsException() : base() { }
|
|
|
|
|
/// <summary>Constructs a new GraphicsException with the specified excpetion message.</summary>
|
|
|
|
|
/// <param name="message"></param>
|
|
|
|
|
public GraphicsException(string message) : base(message) { }
|
2009-02-22 11:43:35 +01:00
|
|
|
|
}
|
|
|
|
|
}
|