FileDocCategorySizeDatePackage
NoSuchElementException.javaAPI DocAndroid 1.5 API1728Wed May 06 22:41:04 BST 2009java.util

NoSuchElementException

public class NoSuchElementException extends RuntimeException
A {@code NoSuchElementException} is thrown when trying to retrieve an element past the end of an Enumeration, or the first or last element from an empty Vector.
see
Enumeration
see
java.lang.RuntimeException
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public NoSuchElementException()
Constructs a new {@code NoSuchElementException} with the current stack trace filled in.


                     
      
        super();
    
public NoSuchElementException(String detailMessage)
Constructs a new {@code NoSuchElementException} with the current stack trace and message filled in.

param
detailMessage the detail message for the exception.

        super(detailMessage);
    
Methods Summary