HISP/HorseIsleServer/LibHISP/Game/GameExceptions.cs
2022-03-07 07:08:47 -05:00

15 lines
395 B
C#

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 { };
}