7b245d2461
* java/beans/PropertyChangeEvent.java (oldVal): Renamed to oldValue. (newVal): Renamed to newValue. * java/beans/PropertyVetoException.java (changeEvent): Renamed to evt. * java/beans/beancontext/BeanContextServiceRevokedEvent.java (revokeNow): Renamed to invalidateRefs. * java/io/OptionalDataException.java: Updated FIXME. (eof): New placeholder field. (length); Ditto. * java/io/WriteAbortedException.java (message): Made transient. * java/lang/ClassNotFoundException.java: Updated comments for JDK 1.2. * java/lang/Throwable.java (stackTrace): Made transient. * java/net/InetAddress.java: Made Serializable. * java/security/KeyPair.java: Made Serializable. * java/security/Provider.java: Replaced with Classpath version that implements serialization and proper methods. * java/text/ChoiceFormat.java (strings): Renamed to choiceFormats. (limits): Renamed to choiceLimits. Serialization changes per: http://java.sun.com/products/jdk/1.2/docs/api/serialized-form.html From-SVN: r34726
62 lines
1.3 KiB
Java
62 lines
1.3 KiB
Java
/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
|
|
|
|
This file is part of libgcj.
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
details. */
|
|
|
|
package java.lang;
|
|
|
|
/**
|
|
* @author Warren Levy <warrenl@cygnus.com>
|
|
* @date September 18, 1998.
|
|
*/
|
|
/* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
|
|
* "The Java Language Specification", ISBN 0-201-63451-1
|
|
* plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
|
|
* Status: Believed complete and correct.
|
|
*/
|
|
|
|
public class ClassNotFoundException extends Exception
|
|
{
|
|
// TODO12:
|
|
// Throwable ex;
|
|
|
|
public ClassNotFoundException()
|
|
{
|
|
super();
|
|
}
|
|
|
|
// TODO12:
|
|
// public ClassNotFoundException(String msg, Throwable ex)
|
|
// {
|
|
// FIXME: Set 'ex' here.
|
|
// }
|
|
|
|
public ClassNotFoundException(String msg)
|
|
{
|
|
super(msg);
|
|
}
|
|
|
|
// TODO12:
|
|
// public Throwable getException()
|
|
// {
|
|
// }
|
|
|
|
// TBD: if this needs to be implemented
|
|
// public void printStackTrace()
|
|
// {
|
|
// }
|
|
|
|
// TBD: if this needs to be implemented
|
|
// public void printStackTrace(PrintStream ps)
|
|
// {
|
|
// }
|
|
|
|
// TBD: if this needs to be implemented
|
|
// public void printStackTrace(PrintWriter pw)
|
|
// {
|
|
// }
|
|
}
|