18 lines
308 B
C#
18 lines
308 B
C#
namespace skyscraper8.UI.MonoGame.Screenhacks
|
|
{
|
|
public class ScreenhackException : Exception
|
|
{
|
|
public ScreenhackException()
|
|
{
|
|
}
|
|
|
|
public ScreenhackException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public ScreenhackException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
}
|
|
}
|