jtulach@120: /* jtulach@120: * Copyright (c) 1994, 2008, Oracle and/or its affiliates. All rights reserved. jtulach@120: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jtulach@120: * jtulach@120: * This code is free software; you can redistribute it and/or modify it jtulach@120: * under the terms of the GNU General Public License version 2 only, as jtulach@120: * published by the Free Software Foundation. Oracle designates this jtulach@120: * particular file as subject to the "Classpath" exception as provided jtulach@120: * by Oracle in the LICENSE file that accompanied this code. jtulach@120: * jtulach@120: * This code is distributed in the hope that it will be useful, but WITHOUT jtulach@120: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jtulach@120: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jtulach@120: * version 2 for more details (a copy is included in the LICENSE file that jtulach@120: * accompanied this code). jtulach@120: * jtulach@120: * You should have received a copy of the GNU General Public License version jtulach@120: * 2 along with this work; if not, write to the Free Software Foundation, jtulach@120: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jtulach@120: * jtulach@120: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jtulach@120: * or visit www.oracle.com if you need additional information or have any jtulach@120: * questions. jtulach@120: */ jtulach@120: jtulach@120: package java.util; jtulach@120: jtulach@120: /** jtulach@120: * Thrown by the nextElement method of an jtulach@120: * Enumeration to indicate that there are no more jtulach@120: * elements in the enumeration. jtulach@120: * jtulach@120: * @author unascribed jtulach@120: * @see java.util.Enumeration jtulach@120: * @see java.util.Enumeration#nextElement() jtulach@120: * @since JDK1.0 jtulach@120: */ jtulach@120: public jtulach@120: class NoSuchElementException extends RuntimeException { jtulach@120: private static final long serialVersionUID = 6769829250639411880L; jtulach@120: jtulach@120: /** jtulach@120: * Constructs a NoSuchElementException with null jtulach@120: * as its error message string. jtulach@120: */ jtulach@120: public NoSuchElementException() { jtulach@120: super(); jtulach@120: } jtulach@120: jtulach@120: /** jtulach@120: * Constructs a NoSuchElementException, saving a reference jtulach@120: * to the error message string s for later retrieval by the jtulach@120: * getMessage method. jtulach@120: * jtulach@120: * @param s the detail message. jtulach@120: */ jtulach@120: public NoSuchElementException(String s) { jtulach@120: super(s); jtulach@120: } jtulach@120: }