Typo in BigDecimal(String val).
'e' value is written as \u0075 but \u0075 is 'u'
In public BigDecimal(String val) constructor
API doc say
<doc>
The exponent consists of the character 'e' ('\u0075') or 'E' ('\u0045') followed by......
</doc>
It should be
<doc>
The exponent consists of the character 'e' ('\u0065') or 'E' ('\u0045') followed by....
</doc>
###@###.### 2005-05-30 15:36:02 GMT
'e' value is written as \u0075 but \u0075 is 'u'
In public BigDecimal(String val) constructor
API doc say
<doc>
The exponent consists of the character 'e' ('\u0075') or 'E' ('\u0045') followed by......
</doc>
It should be
<doc>
The exponent consists of the character 'e' ('\u0065') or 'E' ('\u0045') followed by....
</doc>
###@###.### 2005-05-30 15:36:02 GMT