java.lang
Class TypeNotPresentException

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable 
      extended by java.lang.Exception sample code for java.lang.Exception definition code for java.lang.Exception 
          extended by java.lang.RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException 
              extended by java.lang.TypeNotPresentException
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable

public class TypeNotPresentException
extends RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException

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 sample code for java.lang.ClassNotFoundException definition code for java.lang.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.

Since:
1.5
See Also:
Serialized Form

Constructor Summary
TypeNotPresentException sample code for java.lang.TypeNotPresentException.TypeNotPresentException(java.lang.String, java.lang.Throwable) definition code for java.lang.TypeNotPresentException.TypeNotPresentException(java.lang.String, java.lang.Throwable) (String sample code for java.lang.String definition code for java.lang.String  typeName, Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  cause)
          Constructs a TypeNotPresentException for the named type with the specified cause.
 
Method Summary
 String sample code for java.lang.String definition code for java.lang.String typeName sample code for java.lang.TypeNotPresentException.typeName() definition code for java.lang.TypeNotPresentException.typeName() ()
          Returns the fully qualified name of the unavailable type.
 
Methods inherited from class java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
fillInStackTrace sample code for java.lang.Throwable.fillInStackTrace() definition code for java.lang.Throwable.fillInStackTrace() , getCause sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() , getLocalizedMessage sample code for java.lang.Throwable.getLocalizedMessage() definition code for java.lang.Throwable.getLocalizedMessage() , getMessage sample code for java.lang.Throwable.getMessage() definition code for java.lang.Throwable.getMessage() , getStackTrace sample code for java.lang.Throwable.getStackTrace() definition code for java.lang.Throwable.getStackTrace() , initCause sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) , printStackTrace sample code for java.lang.Throwable.printStackTrace() definition code for java.lang.Throwable.printStackTrace() , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintStream) definition code for java.lang.Throwable.printStackTrace(java.io.PrintStream) , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) definition code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) , setStackTrace sample code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) definition code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) , toString sample code for java.lang.Throwable.toString() definition code for java.lang.Throwable.toString()
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

TypeNotPresentException sample code for java.lang.TypeNotPresentException(java.lang.String, java.lang.Throwable) definition code for java.lang.TypeNotPresentException(java.lang.String, java.lang.Throwable)

public TypeNotPresentException(String sample code for java.lang.String definition code for java.lang.String  typeName,
                               Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  cause)
Constructs a TypeNotPresentException for the named type with the specified cause.

Parameters:
typeName - the fully qualified name of the unavailable type
cause - the exception that was thrown when the system attempted to load the named type, or null if unavailable or inapplicable
Method Detail

typeName sample code for java.lang.TypeNotPresentException.typeName() definition code for java.lang.TypeNotPresentException.typeName()

public String sample code for java.lang.String definition code for java.lang.String  typeName()
Returns the fully qualified name of the unavailable type.

Returns:
the fully qualified name of the unavailable type