diff --git a/Source/OpenTK/Platform/PlatformException.cs b/Source/OpenTK/Platform/PlatformException.cs
new file mode 100644
index 00000000..75c6fef0
--- /dev/null
+++ b/Source/OpenTK/Platform/PlatformException.cs
@@ -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;
+
+/// Defines a plaftorm specific exception.
+public class PlatformException : Exception
+{
+ /// Constructs a new PlatformException.
+ public PlatformException(string s) : base(s) { }
+}