16 lines
343 B
C#
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)
|
|
{
|
|
}
|
|
} |