TechbloxModdingAPI/TechbloxModdingAPI/App/AppExceptions.cs
NorbiPeti c914b5b393
Renamed all references of Gamecraft to Techblox
Except those that actually refer to the game's code
2021-05-02 01:56:20 +02:00

42 lines
684 B
C#

using System;
using System.Runtime.Serialization;
namespace TechbloxModdingAPI.App
{
public class AppException : TechbloxModdingAPIException
{
public AppException()
{
}
public AppException(string message) : base(message)
{
}
public AppException(string message, Exception innerException) : base(message, innerException)
{
}
}
public class AppStateException : AppException
{
public AppStateException()
{
}
public AppStateException(string message) : base(message)
{
}
}
public class GameNotFoundException : AppException
{
public GameNotFoundException()
{
}
public GameNotFoundException(string message) : base(message)
{
}
}
}