Difference between NoClassDefFoundError and ClassNotFoundException

来源:互联网 发布:淘宝上配眼镜靠谱么 编辑:程序博客网 时间:2024/06/08 09:50

    1)
    public class ClassNotFoundExceptionextends Exception
        Thrown when an application tries to load in a class through its string name using:
            * The forName method in class Class.
            * The findSystemClass method in class ClassLoader .
            * The loadClass method in class ClassLoader.
        but no definition for the class with the specified name could be found.

        As of release 1.4, this exception has been retrofitted to conform to the general purpose exception-chaining mechanism.
        The "optional exception that was raised while loading the class" that may be provided at construction time and accessed
        via the getException() method is now known as the cause,
        and may be accessed via the Throwable.getCause() method, as well as the aforementioned "legacy method."
    2)
    public class NoClassDefFoundErrorextends LinkageError

    Thrown if the Java Virtual Machine or a ClassLoader instance 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.

原创粉丝点击