ed05faa96f
* First pass at Fika's PatchManager implementation * add comments --------- Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
11 lines
268 B
C#
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) { }
|
|
}
|