* minor localization fix for exceptions: use getLocalizedMessage instead of getMessage
This commit is contained in:
parent
561ce058f3
commit
a36682063b
|
@ -134,7 +134,7 @@ public abstract class SvrProcess implements ProcessCall
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
msg = e.getMessage();
|
msg = e.getLocalizedMessage();
|
||||||
if (msg == null)
|
if (msg == null)
|
||||||
msg = e.toString();
|
msg = e.toString();
|
||||||
if (e.getCause() != null)
|
if (e.getCause() != null)
|
||||||
|
|
Loading…
Reference in New Issue