Initial commit.
This commit is contained in:
parent
26f1ac30d0
commit
db29304aa8
1 changed files with 16 additions and 0 deletions
16
Source/OpenTK/Platform/PlatformException.cs
Normal file
16
Source/OpenTK/Platform/PlatformException.cs
Normal 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) { }
|
||||
}
|
Loading…
Reference in a new issue