Package java.lang Previous
Previous
Java API
Java API
Index
Index
Next
Next

Class ClassNotFoundException

Constructors

public  class  java.lang.ClassNotFoundException
    extends  java.lang.Exception  
{
        // Constructors
    public ClassNotFoundException();	
    public ClassNotFoundException(String  s);	
}

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

but no definition for the class with the specifed name could be found.


Constructors


ClassNotFoundException

public ClassNotFoundException() 

Constructs a ClassNotFoundException with no detail message.


ClassNotFoundException

public ClassNotFoundException(String  s) 

Constructs a ClassNotFoundException with the specified detail message.

ParameterDescription
s the detail message



Top© 1996 Sun Microsystems, Inc. All rights reserved.