19 lines
No EOL
402 B
C#
19 lines
No EOL
402 B
C#
#nullable disable
|
|
namespace EllieBot.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)
|
|
{
|
|
}
|
|
} |