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

16 lines
343 B
C#
Raw Normal View History

2025-05-13 15:55:50 -05:00
namespace StevesBot.Worker.Discord;
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)
{
}
}