2024-03-05 10:37:18 +00:00
|
|
|
|
namespace Supercell.GUT.Titan.Logic.Debug;
|
|
|
|
|
|
2024-03-04 13:19:32 +00:00
|
|
|
|
public class LogicException : Exception
|
|
|
|
|
{
|
|
|
|
|
public LogicException(string message) : base(message)
|
|
|
|
|
{
|
2024-03-05 10:37:18 +00:00
|
|
|
|
;
|
2024-03-04 13:19:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|