Empty interfaces + records for IInventoryService, IInventoryTransaction, InventoryCommitResult, InventoryLoadConfig, InventoryCatalogException. Implementation lands in subsequent commits. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
11 lines
388 B
C#
11 lines
388 B
C#
namespace SVSim.Database.Services.Inventory;
|
|
|
|
/// <summary>
|
|
/// 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.
|
|
/// </summary>
|
|
public sealed class InventoryCatalogException : Exception
|
|
{
|
|
public InventoryCatalogException(string message) : base(message) { }
|
|
}
|