Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Exceptions/Helpers/DurabilityHelperException.cs
T
Cj 76e91047d6 More warnings fixes (#542)
* Fix more warnings, add new exception

* Run formatter

---------

Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
2025-08-11 14:13:02 +00:00

11 lines
312 B
C#

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