You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
-
- namespace Discord.WebSocket
- {
- /// <summary>
- /// The exception thrown when the gateway client has been requested to reconnect.
- /// </summary>
- public class GatewayReconnectException : Exception
- {
- /// <summary>
- /// 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>
- public GatewayReconnectException(string message)
- : base(message)
- { }
- }
- }
|