Class java.lang.ClassNotFoundException
All Packages    This Package    Previous    Next

Class java.lang.ClassNotFoundException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.ClassNotFoundException

public class ClassNotFoundException
extends Exception
Signals that a class could not be found.
Version:
1.1, 08/12/95

Constructor Index

 o ClassNotFoundException()
Constructs a ClassNotFoundException with no detail message.
 o ClassNotFoundException(String)
Constructs a ClassNotFoundException with the specified detail message.

Constructors

 o ClassNotFoundException
  public ClassNotFoundException()
Constructs a ClassNotFoundException with no detail message. A detail message is a String that describes this particular exception.

 o ClassNotFoundException

  public ClassNotFoundException(String s)
Constructs a ClassNotFoundException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
s - the detail message


All Packages    This Package    Previous    Next