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