www.pudn.com > j2me_cldc-1_1-fcs-src-winunix.rar > NoClassDefFoundError.java


/*
 * Copyright © 2003 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 * 
 */

package java.lang;

/**
 * Thrown if the Java Virtual Machine tries to load in the
 * definition of a class (as part of a normal method call or 
 * as part of creating a new instance using the new 
 * expression) and no definition of the class could be found. 
 * 

* The searched-for class definition existed when the currently * executing class was compiled, but the definition can no longer be * found. * * @author unascribed * @version 12/17/01 (CLDC 1.1) * @since JDK1.0, CLDC 1.1 */ public class NoClassDefFoundError extends Error { /** * Constructs a NoClassDefFoundError with no detail message. */ public NoClassDefFoundError() { super(); } /** * Constructs a NoClassDefFoundError with the specified * detail message. * * @param s the detail message. */ public NoClassDefFoundError(String s) { super(s); } }