/**@class java.lang.ClassNotFoundException
@extends java.lang.ReflectiveOperationException

 Thrown when a class loader is unable to find a class.
*/
var ClassNotFoundException = {

/**Returns the exception which occurred when loading the class.
@return {Object {java.lang.Throwable}} Throwable the exception which occurred while loading the class.
*/
getException : function(  ) {},

/**Returns the cause of this Throwable, or {@code null} if there is no
 cause.
@return {Object {java.lang.Throwable}} Throwable the receiver's cause.
*/
getCause : function(  ) {},


};