This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.lang
exception ClassNotFoundException

java.lang.Object extended by java.lang.Throwable extended by java.lang.Exception extended by java.lang.ClassNotFoundException
All Implemented Interfaces:
Serializable

public exception ClassNotFoundException
extends Exception

Thrown when an application tries to load in a class through its string name using:

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 {@link #getException()} method is now known as the cause, and may be accessed via the {@link Throwable#getCause()} method, as well as the aforementioned "legacy method."


Constructor Summary

          Constructs a ClassNotFoundException with no detail message.

          Constructs a ClassNotFoundException with the specified detail message.

          Constructs a ClassNotFoundException with the specified detail message and optional exception that was raised while loading the class.
 
Method Summary
 Throwable

          Returns the cause of this exception (the exception that was raised if an error occurred while attempting to load the class; otherwise null).
 Throwable

          Returns the exception that was raised if an error occurred while attempting to load the class.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ClassNotFoundException

public ClassNotFoundException()
Constructs a ClassNotFoundException with no detail message.


ClassNotFoundException

public ClassNotFoundException(String s)
Constructs a ClassNotFoundException with the specified detail message.

Parameters:
s - the detail message.

ClassNotFoundException

public ClassNotFoundException(String s,
                              Throwable ex)
Constructs a ClassNotFoundException with the specified detail message and optional exception that was raised while loading the class.

Parameters:
s - the detail message
ex - the exception that was raised while loading the class
Method Detail

getCause

public Throwable getCause()
Returns the cause of this exception (the exception that was raised if an error occurred while attempting to load the class; otherwise null).

Overrides:
getCause in class Throwable
Returns:
the cause of this exception.

getException

public Throwable getException()
Returns the exception that was raised if an error occurred while attempting to load the class. Otherwise, returns null.

This method predates the general-purpose exception chaining facility. The {@link Throwable#getCause()} method is now the preferred means of obtaining this information.

Returns:
the Exception that was raised while loading a class


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.