You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-16 07:06:30 +09:00
XML comments added to remove all warnings; Documentation.chm updated
This commit is contained in:
@@ -28,21 +28,33 @@ namespace Lidgren.Network
|
||||
[Serializable]
|
||||
public sealed class NetException : Exception
|
||||
{
|
||||
/// <summary>
|
||||
/// NetException constructor
|
||||
/// </summary>
|
||||
public NetException()
|
||||
: base()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// NetException constructor
|
||||
/// </summary>
|
||||
public NetException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// NetException constructor
|
||||
/// </summary>
|
||||
public NetException(string message, Exception inner)
|
||||
: base(message, inner)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// NetException constructor
|
||||
/// </summary>
|
||||
private NetException(SerializationInfo info, StreamingContext context)
|
||||
: base(info, context)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user