fixed some formatting typos
[vimdoclet.git] / sample / java.lang.TypeNotPresentException.txt
blob84af297a79968a124ee09b97f8b2f35ae9b3189d
1 *java.lang.TypeNotPresentException* *TypeNotPresentException* Thrown when an app
3 public class TypeNotPresentException
4   extends    |java.lang.RuntimeException|
6 |java.lang.TypeNotPresentException_Description|
7 |java.lang.TypeNotPresentException_Fields|
8 |java.lang.TypeNotPresentException_Constructors|
9 |java.lang.TypeNotPresentException_Methods|
11 ================================================================================
13 *java.lang.TypeNotPresentException_Constructors*
14 |java.lang.TypeNotPresentException(String,Throwable)|Constructs a TypeNotPresen
16 *java.lang.TypeNotPresentException_Methods*
17 |java.lang.TypeNotPresentException.typeName()|Returns the fully qualified name 
19 *java.lang.TypeNotPresentException_Description*
21 Thrown when an application tries to access a type using a string representing 
22 the type's name, but no definition for the type with the specified name can be 
23 found. This exception differs from (|java.lang.ClassNotFoundException|) in that 
24 ClassNotFoundException is a checked exception, whereas this exception is 
25 unchecked. 
27 Note that this exception may be used when undefined type variables are accessed 
28 as well as when types (e.g., classes, interfaces or annotation types) are 
29 loaded. 
33 *java.lang.TypeNotPresentException(String,Throwable)*
35 public TypeNotPresentException(
36   java.lang.String typeName,
37   java.lang.Throwable cause)
39 Constructs a TypeNotPresentException for the named type with the specified 
40 cause. 
42     typeName - the fully qualified name of the unavailable type 
43     cause - the exception that was thrown when the system attempted to load the named type, 
44        or null if unavailable or inapplicable 
46 *java.lang.TypeNotPresentException.typeName()*
48 public |java.lang.String| typeName()
50 Returns the fully qualified name of the unavailable type. 
54     Returns: the fully qualified name of the unavailable type