/**@class java.lang.TypeNotPresentException @extends java.lang.RuntimeException Thrown when a program tries to access a class, interface, enum or annotation type through a string that contains the type's name and the type cannot be found. This exception is an unchecked alternative to {@link java.lang.ClassNotFoundException}. @since 1.5 */ var TypeNotPresentException = { /**Gets the fully qualified name of the type that could not be found. @return {String} the name of the type that caused this exception. */ typeName : function( ) {}, };