HISP/Horse Isle Server/HorseIsleServer/Game/GameExceptions.cs
2021-02-11 11:34:47 +13:00

15 lines
395 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 { };
}