mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2025-04-18 11:22:35 +00:00
8 lines
185 B
C#
8 lines
185 B
C#
namespace Supercell.GUT.Titan.Debugging;
|
|
public class LogicException : Exception
|
|
{
|
|
public LogicException(string message) : base(message)
|
|
{
|
|
// LogicException.
|
|
}
|
|
}
|