Supercell.GUT/Supercell.GUT.Titan/Debugging/LogicException.cs
BreadDEV ad23f95319 [v0.0.1] very early state server
only basic messages, wip.
2024-03-04 20:19:32 +07:00

8 lines
185 B
C#

namespace Supercell.GUT.Titan.Debugging;
public class LogicException : Exception
{
public LogicException(string message) : base(message)
{
// LogicException.
}
}