19 lines
No EOL
406 B
C#
19 lines
No EOL
406 B
C#
#nullable disable
|
|
namespace EllieBot.Modules.Gambling.Common.AnimalRacing.Exceptions;
|
|
|
|
public class AlreadyStartedException : Exception
|
|
{
|
|
public AlreadyStartedException()
|
|
{
|
|
}
|
|
|
|
public AlreadyStartedException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public AlreadyStartedException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
} |