HISP/Horse Isle Server/HorseIsleServer/Game/GameExceptions.cs
2021-02-04 20:00:06 +13:00

14 lines
394 B
C#
Executable file

using System;
namespace HISP.Game
{
// Inventory
public class InventoryException : Exception { };
public class InventoryFullException : InventoryException { };
public class InventoryMaxStackException : InventoryException { };
// Drawingroom
public class DrawingroomException : Exception { };
public class DrawingroomFullException : DrawingroomException { };
}