* Makefile.in (dbxout.o): Depend on ggc.h.
[official-gcc.git] / libjava / java / lang / ThreadDeath.java
blobcaffc936d2e51805510f4f53030d886502db2f9f
1 // ThreadDeath.java - Special exception registering Thread death.
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 August 26, 1998
18 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
19 * "The Java Language Specification", ISBN 0-201-63451-1
20 * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
21 * Status: Complete to version 1.1
24 public class ThreadDeath extends Error
26 public ThreadDeath ()
28 super ();
31 public ThreadDeath (String message)
33 super (message);