HISP/Horse Isle Server/HorseIsleServer/Game/GameExceptions.cs

10 lines
249 B
C#
Executable file

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