mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
Applied codestyle to all .cs files
This commit is contained in:
@@ -5,14 +5,15 @@ public class AlreadyJoinedException : Exception
|
||||
{
|
||||
public AlreadyJoinedException()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public AlreadyJoinedException(string message) : base(message)
|
||||
public AlreadyJoinedException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public AlreadyJoinedException(string message, Exception innerException) : base(message, innerException)
|
||||
public AlreadyJoinedException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@@ -7,11 +7,13 @@ public class AlreadyStartedException : Exception
|
||||
{
|
||||
}
|
||||
|
||||
public AlreadyStartedException(string message) : base(message)
|
||||
public AlreadyStartedException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public AlreadyStartedException(string message, Exception innerException) : base(message, innerException)
|
||||
public AlreadyStartedException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@@ -7,11 +7,13 @@ public class AnimalRaceFullException : Exception
|
||||
{
|
||||
}
|
||||
|
||||
public AnimalRaceFullException(string message) : base(message)
|
||||
public AnimalRaceFullException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public AnimalRaceFullException(string message, Exception innerException) : base(message, innerException)
|
||||
public AnimalRaceFullException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@@ -7,11 +7,13 @@ public class NotEnoughFundsException : Exception
|
||||
{
|
||||
}
|
||||
|
||||
public NotEnoughFundsException(string message) : base(message)
|
||||
public NotEnoughFundsException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public NotEnoughFundsException(string message, Exception innerException) : base(message, innerException)
|
||||
public NotEnoughFundsException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user