Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Exceptions/Helpers/HealthHelperException.cs
T
Cj e54dcbd4d1 Fix more warnings... (#543)
* Fix more warnings...

* Fix mistake
2025-08-12 15:28:54 +00:00

11 lines
300 B
C#

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