2004-12-07 Mark Wielaard <mark@klomp.org>
* java/text/MessageFormat.java (scanFormat): Chain thrown exception.
From-SVN: r93795
+2004-12-07 Mark Wielaard <mark@klomp.org>
+
+ * java/text/MessageFormat.java (scanFormat): Chain thrown exception.
+
2005-01-15 Michael Koch <konqueror@gmx.de>
PR libgcj/19444
}
catch (NumberFormatException nfx)
{
- throw new IllegalArgumentException("Failed to parse integer string");
+ IllegalArgumentException iae = new IllegalArgumentException(pat);
+ iae.initCause(nfx);
+ throw iae;
}
// Extract the element format.