fixed some formatting typos
[vimdoclet.git] / sample / java.util.NoSuchElementException.txt
blobb1fc0c552114bc20b6166e19b8b1d9d6e0451515
1 *java.util.NoSuchElementException* *NoSuchElementException* Thrown by the nextEl
3 public class NoSuchElementException
4   extends    |java.lang.RuntimeException|
6 |java.util.NoSuchElementException_Description|
7 |java.util.NoSuchElementException_Fields|
8 |java.util.NoSuchElementException_Constructors|
9 |java.util.NoSuchElementException_Methods|
11 ================================================================================
13 *java.util.NoSuchElementException_Constructors*
14 |java.util.NoSuchElementException()|Constructs a NoSuchElementException with nu
15 |java.util.NoSuchElementException(String)|Constructs a NoSuchElementException, 
17 *java.util.NoSuchElementException_Description*
19 Thrown by the nextElement method of an Enumeration to indicate that there are 
20 no more elements in the enumeration. 
24 *java.util.NoSuchElementException()*
26 public NoSuchElementException()
28 Constructs a NoSuchElementException with null as its error message string. 
31 *java.util.NoSuchElementException(String)*
33 public NoSuchElementException(java.lang.String s)
35 Constructs a NoSuchElementException, saving a reference to the error message 
36 string s for later retrieval by the getMessage method. 
38     s - the detail message.