Files
SPT-Server-Build/Libraries/SPTarkov.Reflection/Patching/PatchException.cs
T
Cj ed05faa96f Implement PatchManager (#585)
* First pass at Fika's PatchManager implementation

* add comments

---------

Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
2025-09-05 09:08:33 +00:00

11 lines
268 B
C#

namespace SPTarkov.Reflection.Patching;
public class PatchException : Exception
{
public PatchException(string message)
: base(message) { }
public PatchException(string message, Exception innerException)
: base(message, innerException) { }
}