Files
steves-bot/src/StevesBot.Worker/Discord/DiscordRestClientException.cs
T

16 lines
336 B
C#
Raw Normal View History

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