File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Plugins/Wox.Plugin.Program Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,8 @@ static ProgramLogger()
41
41
}
42
42
43
43
/// <summary>
44
- /// Please follow exception format: |class name|calling method name|loading program path|user friendly message that explains the error
44
+ /// Please follow exception format, there are four parts to an error message that need to be specified:
45
+ /// |class name|calling method name|loading program path|user friendly message that explains the error
45
46
/// => Example: |Win32|LnkProgram|c:\..\chrome.exe|Permission denied on directory, but Wox should continue
46
47
/// </summary>
47
48
[ MethodImpl ( MethodImplOptions . Synchronized ) ]
Original file line number Diff line number Diff line change @@ -163,9 +163,9 @@ public static Application[] All()
163
163
}
164
164
#endif
165
165
#if DEBUG //make developer aware and implement handling
166
- catch ( Exception )
166
+ catch ( Exception e )
167
167
{
168
- throw ;
168
+ throw e ;
169
169
}
170
170
#endif
171
171
return u . Apps ;
You can’t perform that action at this time.
0 commit comments