Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Exceptions/Helpers/InventoryHelperException.cs
T
Cj 628a31f07f Helper warning fixes (#545)
* Helper warning fixes

* Make AI happy
2025-08-12 19:06:46 +00:00

11 lines
309 B
C#

namespace SPTarkov.Server.Core.Exceptions.Helpers;
public class InventoryHelperException : Exception
{
public InventoryHelperException(string message)
: base(message) { }
public InventoryHelperException(string message, Exception innerException)
: base(message, innerException) { }
}