mirror of git://gcc.gnu.org/git/gcc.git
DateFormat.java (parse): Improved javadoc.
2004-07-09 Dalibor Topic <robilad@kaffe.org> * java/text/DateFormat.java (parse): Improved javadoc. Improved exception message. From-SVN: r84368
This commit is contained in:
parent
2e54a860a8
commit
28e0ee766e
|
|
@ -1,3 +1,8 @@
|
|||
2004-07-09 Dalibor Topic <robilad@kaffe.org>
|
||||
|
||||
* java/text/DateFormat.java (parse):
|
||||
Improved javadoc. Improved exception message.
|
||||
|
||||
2004-07-09 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* gnu/java/nio/SelectorImpl.java (select): Call static Thread
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
/* DateFormat.java -- Class for formatting/parsing date/times
|
||||
Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
|
||||
Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
|
|
@ -591,6 +592,7 @@ public abstract class DateFormat extends Format implements Cloneable
|
|||
/**
|
||||
* This method parses the specified date/time string.
|
||||
*
|
||||
* @param source The string to parse.
|
||||
* @return The resultant date.
|
||||
*
|
||||
* @exception ParseException If the specified string cannot be parsed.
|
||||
|
|
@ -604,7 +606,8 @@ public abstract class DateFormat extends Format implements Cloneable
|
|||
int index = pos.getErrorIndex();
|
||||
if (index < 0)
|
||||
index = pos.getIndex();
|
||||
throw new ParseException("invalid Date syntax", index);
|
||||
throw new ParseException("invalid Date syntax in \""
|
||||
+ source + '\"', index);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue