File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 6262 <value >エラーを無視して処理を継続しますか?継続した場合、圧縮・解凍結果の一部または全部が破損している可能性があるのでご注意下さい。</value >
6363 </data >
6464 <data name =" ErrorGeneric" xml : space =" preserve" >
65- <value >処理中にエラーが発生しました ({0})。 </value >
65+ <value >処理中にエラーが発生しました ({0})</value >
6666 </data >
6767 <data name =" Filter7z" xml : space =" preserve" >
6868 <value >7-Zip ファイル</value >
Original file line number Diff line number Diff line change @@ -182,8 +182,11 @@ private static string GetMessage(Report src)
182182 private static string GetMessage ( Exception src )
183183 {
184184 var dest = new StringBuilder ( ) ;
185- if ( src is AccessException ae ) dest . Append ( $ "{ ae . FileName } ") ;
186- return dest . AppendFormat ( Properties . Resources . ErrorGeneric , src . GetType ( ) . Name ) . ToString ( ) ;
185+ return dest . AppendFormat ( Properties . Resources . ErrorGeneric , src . GetType ( ) . Name )
186+ . AppendLine ( )
187+ . AppendLine ( )
188+ . Append ( src . Message )
189+ . ToString ( ) ;
187190 }
188191
189192 #endregion
You can’t perform that action at this time.
0 commit comments