slatedgtk/src/SlatedGameToolkit.Framework/Exceptions/SlatedGameToolkitException.cs

17 lines
395 B
C#

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) {
}
}
}