Browse Source

Cleanup GatewayReconnectException docs

tags/2.3.0
Still Hsu Still Hsu 5 years ago
parent
commit
833ee42a1f
No known key found for this signature in database GPG Key ID: 206F30E2490F42C0
1 changed files with 4 additions and 7 deletions
  1. +4
    -7
      src/Discord.Net.WebSocket/GatewayReconnectException.cs

+ 4
- 7
src/Discord.Net.WebSocket/GatewayReconnectException.cs View File

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


Loading…
Cancel
Save