HISP/Horse Isle Server/HorseIsleServer/Game/GameExceptions.cs
2021-01-28 23:27:58 +13:00

10 lines
228 B
C#
Executable file

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