You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plexus-compilers/plexus-compiler-javac/src/main/java/org/codehaus/plexus/compiler/javac/JavacCompiler.java
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -187,6 +187,19 @@ protected static class Messages {
187
187
"\n\n系统资源不足。\n有关详细信息, 请参阅以下堆栈跟踪。\n",
188
188
"\n\nDas System hat keine Ressourcen mehr.\nDetails finden Sie im folgenden Stacktrace.\n"
189
189
};
190
+
191
+
// javac.properties-> javac.msg.io
192
+
// (en JDK-8, ja JDK-8, zh_CN JDK-8, en JDK-21, ja JDK-21, zh_CN JDK-21, de JDK-21)
193
+
protectedstaticfinalString[] IO_ERROR_HEADERS = {
194
+
"\n\nAn input/output error occurred.\nConsult the following stack trace for details.\n",
195
+
"\n\n入出力エラーが発生しました。\n詳細は次のスタック・トレースで調査してください。\n",
196
+
"\n\n发生输入/输出错误。\n有关详细信息, 请参阅以下堆栈跟踪。\n",
197
+
"\n\nAn input/output error occurred.\nConsult the following stack trace for details.\n",
198
+
"\n\n入出力エラーが発生しました。\n詳細は次のスタックトレースで調査してください。\n",
199
+
"\n\n发生输入/输出错误。\n有关详细信息, 请参阅以下堆栈跟踪。\n",
200
+
"\n\nEin Eingabe-/Ausgabefehler ist aufgetreten.\nDetails finden Sie im folgenden Stacktrace.\n"
Copy file name to clipboardExpand all lines: plexus-compilers/plexus-compiler-javac/src/test/java/org/codehaus/plexus/compiler/javac/ErrorMessageParserTest.java
0 commit comments