java: printStackTrace always to stderr

like 3d3b3f656f92790225b89aa31ee61163fb2fc7e5

Change-Id: I6e80717de009e8a3a89ffc80cb945cc832917f8c
This commit is contained in:
Thomas Arnhold
2012-07-13 09:23:19 +02:00
parent c26d4d3446
commit cdaddecc5e
109 changed files with 386 additions and 386 deletions

View File

@ -1054,7 +1054,7 @@ class UnoObjectDefinition{
sReturn +="\n}";
}
sReturn += "catch (" + sCurException + " " + sExceptionName + "){\n";
sReturn += "\t" + sExceptionName + ".printStackTrace(System.out);\n";
sReturn += "\t" + sExceptionName + ".printStackTrace(System.err);\n";
sReturn += "\t" + getCommentSign() + "Enter your Code here...\n}";
nIndex++;
}