76e91047d6
* Fix more warnings, add new exception * Run formatter --------- Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
11 lines
312 B
C#
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) { }
|
|
}
|