namespace SVSim.Database.Services.Inventory; /// /// Thrown when an inventory operation references a catalog id that doesn't exist /// (unknown card / item / cosmetic). Programmer error — bubbles to the global error handler. /// public sealed class InventoryCatalogException : Exception { public InventoryCatalogException(string message) : base(message) { } }