Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Exceptions/Items/InvalidModdedClothingException.cs
T
Jesse c7e40deb90 Add support for partially loading invalid profiles (#533)
* Add support for partially loading invalid profiles

* Return early in exception
2025-08-05 15:25:47 +01:00

16 lines
409 B
C#

namespace SPTarkov.Server.Core.Exceptions.Items;
public class InvalidModdedClothingException : Exception
{
public InvalidModdedClothingException(string message)
: base(message) { }
public InvalidModdedClothingException(string message, Exception innerException)
: base(message, innerException) { }
public override string? StackTrace
{
get { return null; }
}
}