HISP/HorseIsleServer/LibHISP/Game/GameExceptions.cs
2022-07-25 19:17:30 +12: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 { };
}