mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-24 20:26:58 +00:00
[OpenTK] Additional constructor and doc cleanup
This commit is contained in:
parent
0a0a5d0af7
commit
b0ceef3ec9
|
@ -10,10 +10,22 @@ using System;
|
||||||
|
|
||||||
namespace OpenTK
|
namespace OpenTK
|
||||||
{
|
{
|
||||||
/// <summary>Defines a plaftorm specific exception.</summary>
|
/// <summary>
|
||||||
|
/// Defines a plaftorm-specific exception.
|
||||||
|
/// </summary>
|
||||||
public class PlatformException : Exception
|
public class PlatformException : Exception
|
||||||
{
|
{
|
||||||
/// <summary>Constructs a new PlatformException.</summary>
|
/// <summary>
|
||||||
public PlatformException(string s) : base(s) { }
|
/// 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) { }
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue