diff --git a/Source/OpenTK/Platform/PlatformException.cs b/Source/OpenTK/Platform/PlatformException.cs
index adea690b..37ffe478 100644
--- a/Source/OpenTK/Platform/PlatformException.cs
+++ b/Source/OpenTK/Platform/PlatformException.cs
@@ -10,10 +10,22 @@ using System;
namespace OpenTK
{
- /// Defines a plaftorm specific exception.
+ ///
+ /// Defines a plaftorm-specific exception.
+ ///
public class PlatformException : Exception
{
- /// Constructs a new PlatformException.
- public PlatformException(string s) : base(s) { }
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public PlatformException()
+ {
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// A message explaining the cause for this exception.
+ public PlatformException(string message) : base(message) { }
}
}
\ No newline at end of file