|
From: <an...@pi...> - 2008-02-01 08:58:09
|
Rogan Dawes wrote:
> Not for me:
>
> java.lang.Error.description = \
> A serious system failure occurred.\n\
> \n\
> The application is possibly in an inconsistent state.\n\
> Reboot the application.\n\
> \n\
> The exact bug is:\n\
> \{0\}\n\
> \n\
> Please report this bug.
This example you pasted here looks like it has a quoted placeholder -
please remove backslashes before { and }, like this:
java.lang.Error.description = \
...
The exact bug is:\n\
{0}\n\
...
hope this helps,
Andrius
|