e54dcbd4d1
* Fix more warnings... * Fix mistake
11 lines
300 B
C#
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) { }
|
|
}
|