Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Exceptions/Items/ItemHelperException.cs
T
2025-08-10 00:09:44 -04:00

11 lines
292 B
C#

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