* minor localization fix for exceptions: use getLocalizedMessage instead of getMessage

This commit is contained in:
teo_sarca 2007-05-26 15:18:25 +00:00
parent 561ce058f3
commit a36682063b
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ public abstract class SvrProcess implements ProcessCall
}
catch (Exception e)
{
msg = e.getMessage();
msg = e.getLocalizedMessage();
if (msg == null)
msg = e.toString();
if (e.getCause() != null)