mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
19 lines
403 B
C#
19 lines
403 B
C#
#nullable disable
|
|
namespace NadekoBot.Modules.Gambling.Common.AnimalRacing.Exceptions;
|
|
|
|
public class AlreadyJoinedException : Exception
|
|
{
|
|
public AlreadyJoinedException()
|
|
{
|
|
}
|
|
|
|
public AlreadyJoinedException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public AlreadyJoinedException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
} |