You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
614 B
23 lines
614 B
using System;
|
|
|
|
namespace Discord.WebSocket
|
|
{
|
|
/// <summary>
|
|
/// An 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.
|
|
/// </summary>
|
|
/// <param name="message">
|
|
/// The reason why the gateway has been requested to reconnect.
|
|
/// </param>
|
|
public GatewayReconnectException(string message)
|
|
: base(message)
|
|
{ }
|
|
}
|
|
}
|