Initial commit.

This commit is contained in:
the_fiddler 2008-03-24 19:01:35 +00:00
parent 26f1ac30d0
commit db29304aa8

View file

@ -0,0 +1,16 @@
#region --- License ---
/* Licensed under the MIT/X11 license.
* Copyright (c) 2006-2008 the OpenTK Team.
* This notice may not be removed from any source distribution.
* See license.txt for licensing detailed licensing details.
*/
#endregion
using System;
/// <summary>Defines a plaftorm specific exception.</summary>
public class PlatformException : Exception
{
/// <summary>Constructs a new PlatformException.</summary>
public PlatformException(string s) : base(s) { }
}