using System; namespace SlatedGameToolkit.Framework.Exceptions { public class SlatedGameToolkitException : Exception { public SlatedGameToolkitException() { } public SlatedGameToolkitException(string message) : base(message) { } public SlatedGameToolkitException(string message, Exception inner) : base(message, inner) { } } }