Cleanup GatewayReconnectException docs

This commit is contained in:
Still Hsu
2020-05-22 11:51:51 +08:00
committed by Still Hsu
parent 13a41f8754
commit 833ee42a1f

View File

@@ -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)
{ } { }