2025-05-13 15:55:50 -05:00
|
|
|
namespace StevesBot.Worker.Discord;
|
|
|
|
|
|
2025-05-14 16:45:44 -05:00
|
|
|
internal sealed class DiscordRestClientException : Exception
|
2025-05-13 15:55:50 -05:00
|
|
|
{
|
|
|
|
|
public DiscordRestClientException()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DiscordRestClientException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DiscordRestClientException(string message, Exception innerException) : base(message, innerException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|