2025-05-07 23:54:46 -05:00
|
|
|
namespace StevesBot.Worker.Discord;
|
|
|
|
|
|
2025-05-08 01:36:04 -05:00
|
|
|
internal sealed class DiscordClientException : Exception
|
2025-05-07 23:54:46 -05:00
|
|
|
{
|
|
|
|
|
public DiscordClientException()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DiscordClientException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DiscordClientException(string message, Exception innerException) : base(message, innerException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|