chore: begin porting code from playground

This commit is contained in:
Stevan Freeborn
2025-05-07 23:54:46 -05:00
parent 30dbba37be
commit 3f4ab165ce
19 changed files with 230 additions and 24 deletions
@@ -0,0 +1,16 @@
namespace StevesBot.Worker.Discord;
internal class DiscordClientException : Exception
{
public DiscordClientException()
{
}
public DiscordClientException(string message) : base(message)
{
}
public DiscordClientException(string message, Exception innerException) : base(message, innerException)
{
}
}