OSDN Git Service

ee6d8e829bdfa1676ded185829328c34438ae1a5
[pf3gnuchains/gcc-fork.git] / libjava / java / lang / VirtualMachineError.java
1 // VirtualMachineError.java
2
3 /* Copyright (C) 1998, 1999  Cygnus Solutions
4
5    This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
9 details.  */
10  
11 package java.lang;
12  
13 /**
14  * @author Tom Tromey <tromey@cygnus.com>
15  * @date October 1, 1998 
16  */
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.
21  */
22
23 /* FIXME: We should consider adding some special error message when this
24  * exception is thrown, or maybe if it being caught at top-level.  Such
25  * a message would direct the user to send a bug report to
26  * gcj-bugs@cygnus.com, or something like that. --KKT */
27
28 public abstract class VirtualMachineError extends Error
29 {
30   public VirtualMachineError ()
31   {
32     super ();
33   }
34
35   public VirtualMachineError (String msg)
36   {
37     super (msg);
38   }
39 }