628a31f07f
* Helper warning fixes * Make AI happy
11 lines
300 B
C#
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) { }
|
|
}
|