mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-10 07:44:37 +00:00
8c6a533918
todo: improve code and finish base structures
9 lines
171 B
C#
9 lines
171 B
C#
namespace Supercell.GUT.Titan.Logic.Debug;
|
|
|
|
public class LogicException : Exception
|
|
{
|
|
public LogicException(string message) : base(message)
|
|
{
|
|
;
|
|
}
|
|
}
|