[OpenTK] Additional constructor and doc cleanup

This commit is contained in:
thefiddler 2014-07-23 09:05:29 +02:00
parent 0a0a5d0af7
commit b0ceef3ec9

View file

@ -10,10 +10,22 @@ using System;
namespace OpenTK
{
/// <summary>Defines a plaftorm specific exception.</summary>
/// <summary>
/// Defines a plaftorm-specific exception.
/// </summary>
public class PlatformException : Exception
{
/// <summary>Constructs a new PlatformException.</summary>
public PlatformException(string s) : base(s) { }
/// <summary>
/// Initializes a new instance of the <see cref="OpenTK.PlatformException"/> class.
/// </summary>
public PlatformException()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="OpenTK.PlatformException"/> class.
/// </summary>
/// <param name="message">A message explaining the cause for this exception.</param>
public PlatformException(string message) : base(message) { }
}
}