628a31f07f
* Helper warning fixes * Make AI happy
11 lines
309 B
C#
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) { }
|
|
}
|