We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 783e58c commit e41236bCopy full SHA for e41236b
Memory/NativeHelper.cs
@@ -4,6 +4,7 @@
4
using System.Linq;
5
using System.Runtime.InteropServices;
6
using ReClassNET.Util;
7
+using System.IO;
8
9
namespace ReClassNET.Memory
10
{
@@ -109,7 +110,7 @@ public NativeHelper()
109
110
nativeHelperHandle = NativeMethods.LoadLibrary(NativeHelperDll);
111
if (nativeHelperHandle.IsNull())
112
- throw new Exception();
113
+ throw new FileNotFoundException(NativeHelperDll);
114
}
115
116
InintializeNativeModule(nativeHelperHandle);
0 commit comments