11 lines
292 B
C#
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) { }
|
|
}
|