mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 03:15:40 +00:00
Initial commit.
This commit is contained in:
parent
26f1ac30d0
commit
db29304aa8
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