public class java.lang
TypeNotPresentException


Show All Login
Java SE 6
  
Extends: Throwable > Exception > RuntimeException
Details
Thrown when an application tries to access a type using a string representing the type's name, but no definition for the type with the specified name can be found. This exception differs from ClassNotFoundException in that ClassNotFoundException is a checked exception, whereas this exception is unchecked.

Note that this exception may be used when undefined type variables are accessed as well as when types (e.g., classes, interfaces or annotation types) are loaded.
since1.5


Constructors
public TypeNotPresentException(String typeName, Throwable cause) Details
Constructs a TypeNotPresentException for the named type with the specified cause.
typeNamethe fully qualified name of the unavailable type
causethe exception that was thrown when the system attempted to load the named type, or null if unavailable or inapplicable

Methods
public String typeName() Details
Returns the fully qualified name of the unavailable type.
returnthe fully qualified name of the unavailable type