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 thenew* 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
NoClassDefFoundErrorwith no detail message. */ public NoClassDefFoundError() { super(); } /** * Constructs aNoClassDefFoundErrorwith the specified * detail message. * * @param s the detail message. */ public NoClassDefFoundError(String s) { super(s); } }