Cleanup GatewayReconnectException docs
This commit is contained in:
@@ -3,18 +3,15 @@ using System;
|
|||||||
namespace Discord.WebSocket
|
namespace Discord.WebSocket
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An exception thrown when the gateway client has been requested to
|
/// The exception thrown when the gateway client has been requested to reconnect.
|
||||||
/// reconnect.
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class GatewayReconnectException : Exception
|
public class GatewayReconnectException : Exception
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new instance of the
|
/// Initializes a new instance of the <see cref="GatewayReconnectException" /> class with the reconnection
|
||||||
/// <see cref="GatewayReconnectException"/> type.
|
/// message.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="message">
|
/// <param name="message">The reason why the gateway has been requested to reconnect.</param>
|
||||||
/// The reason why the gateway has been requested to reconnect.
|
|
||||||
/// </param>
|
|
||||||
public GatewayReconnectException(string message)
|
public GatewayReconnectException(string message)
|
||||||
: base(message)
|
: base(message)
|
||||||
{ }
|
{ }
|
||||||
|
|||||||
Reference in New Issue
Block a user