using System; namespace Discord.WebSocket { /// /// The exception thrown when the gateway client has been requested to reconnect. /// public class GatewayReconnectException : Exception { /// /// Initializes a new instance of the class with the reconnection /// message. /// /// The reason why the gateway has been requested to reconnect. public GatewayReconnectException(string message) : base(message) { } } }