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

16 lines
343 B
C#

namespace StevesBot.Worker.Discord;
internal sealed class DiscordRestClientException : Exception
{
public DiscordRestClientException()
{
}
public DiscordRestClientException(string message) : base(message)
{
}
public DiscordRestClientException(string message, Exception innerException) : base(message, innerException)
{
}
}