17 lines
395 B
C#
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) {
|
|
}
|
|
}
|
|
} |