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
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
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
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