* Makefile.in (dbxout.o): Depend on ggc.h.
[official-gcc.git] / libjava / java / lang / NoSuchMethodError.java
blob2c4c1da9f05ffe7e4e191e4a6a748b8b873c67ae
1 // NoSuchMethodError.java
3 /* Copyright (C) 1998, 1999 Cygnus Solutions
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 package java.lang;
13 /**
14 * @author Tom Tromey <tromey@cygnus.com>
15 * @date October 1, 1998
17 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
18 * "The Java Language Specification", ISBN 0-201-63451-1
19 * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
20 * Status: Believed complete and correct.
23 public class NoSuchMethodError extends IncompatibleClassChangeError
25 public NoSuchMethodError ()
27 super ();
30 public NoSuchMethodError (String msg)
32 super (msg);