Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Exceptions/Helpers/InRaidHelperException.cs
T
Cj 628a31f07f Helper warning fixes (#545)
* Helper warning fixes

* Make AI happy
2025-08-12 19:06:46 +00:00

11 lines
300 B
C#

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