From 945a0f40d93f61b0f643c6d6df50d7acea3caffc Mon Sep 17 00:00:00 2001 From: tromey Date: Wed, 14 Nov 2001 19:11:52 +0000 Subject: Re-merges with Classpath, from various people: * java/lang/Double.java (parseDouble): Fixed ordering of modifiers. * java/lang/reflect/AccessibleObject.java: Javadoc, reindented. * java/lang/reflect/Member.java: Reindented. * java/lang/reflect/Modifier.java: Reindented. (toString): Only trim trailing space if text was added to StringBuffer. * java/util/ConcurrentModificationException.java: Javadoc updates. * java/util/EmptyStackException.java: Likewise. * java/util/NoSuchElementException.java: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47018 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/util/NoSuchElementException.java | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) (limited to 'libjava/java/util/NoSuchElementException.java') diff --git a/libjava/java/util/NoSuchElementException.java b/libjava/java/util/NoSuchElementException.java index 5ca6544c340..3273dc06fd6 100644 --- a/libjava/java/util/NoSuchElementException.java +++ b/libjava/java/util/NoSuchElementException.java @@ -30,20 +30,32 @@ package java.util; /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3 * "The Java Language Specification", ISBN 0-201-63451-1 * plus online API docs for JDK 1.2 beta from http://www.javasoft.com. - * Status: Believed complete and correct. */ /** * Exception thrown when an attempt is made to access an element that does not - * exist. This exception is thrown by the Enumeration, Iterator and ListIterator - * classes if the nextElement, next or previous method goes beyond the end of - * the list of elements that are being accessed. + * exist. This exception is thrown by the Enumeration, Iterator and + * ListIterator classes if the nextElement, next or previous method goes + * beyond the end of the list of elements that are being accessed. It is also + * thrown by Vector and Stack when attempting to access the first or last + * element of an empty collection. * * @author Warren Levy - * @date September 2, 1998. + * @author Eric Blake + * @see Enumeration + * @see Iterator + * @see ListIterator + * @see Enumeration#nextElement() + * @see Iterator#next() + * @see ListIterator#previous() + * @since 1.0 + * @status updated to 1.4 */ public class NoSuchElementException extends RuntimeException { + /** + * Compatible with JDK 1.0. + */ private static final long serialVersionUID = 6769829250639411880L; /** @@ -51,7 +63,6 @@ public class NoSuchElementException extends RuntimeException */ public NoSuchElementException() { - super(); } /** -- cgit v1.2.3