/[classpath]/classpath/java/lang/RuntimeException.java
ViewVC logotype

Diff of /classpath/java/lang/RuntimeException.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by mark, Tue Jan 22 22:27:00 2002 UTC revision 1.8 by ericb, Sun Feb 24 04:25:16 2002 UTC
# Line 1  Line 1 
1  /* RuntimeException.java -- all exceptions which are subclasses of this class  /* RuntimeException.java -- root of all unchecked exceptions
2     can be thrown at any time during the execution of a Java virtual machine.     Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
    Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.  
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 8  GNU Classpath is free software; you can Line 7  GNU Classpath is free software; you can
7  it under the terms of the GNU General Public License as published by  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)  the Free Software Foundation; either version 2, or (at your option)
9  any later version.  any later version.
10    
11  GNU Classpath is distributed in the hope that it will be useful, but  GNU Classpath is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Line 39  exception statement from your version. * Line 38  exception statement from your version. *
38    
39  package java.lang;  package java.lang;
40    
 /* 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.  
  */  
   
41  /**  /**
  * Exceptions may be thrown by one part of a Java program and caught  
  * by another in order to deal with exceptional conditions.    
42   * All exceptions which are subclasses of <code>RuntimeException</code>   * All exceptions which are subclasses of <code>RuntimeException</code>
43   * can be thrown at any time during the execution of a Java virtual machine.   * can be thrown at any time during the execution of a Java virtual machine.
44   * Methods which throw these exceptions are not required to declare them   * Methods which throw these exceptions are not required to declare them
45   * in their throws clause.   * in their throws clause.
46   *   *
  * @since JDK 1.0  
  *  
47   * @author Brian Jones   * @author Brian Jones
48   * @author Warren Levy <warrenl@cygnus.com>   * @author Warren Levy <warrenl@cygnus.com>
49   * @date September 18, 1998.   * @author Eric Blake <ebb9@email.byu.edu>
50     * @status updated to 1.4
51   */   */
52  public class RuntimeException extends Exception  public class RuntimeException extends Exception
53  {  {
54    static final long serialVersionUID = -7034897190745766939L;    /**
55       * Compatible with JDK 1.0+.
56       */
57      private static final long serialVersionUID = -7034897190745766939L;
58    
59    /**    /**
60     * Create an exception without a message.     * Create an exception without a message. The cause remains uninitialized.
61       *
62       * @see #initCause(Throwable)
63     */     */
64    public RuntimeException()    public RuntimeException()
65      {    {
66        super();    }
     }  
67    
68    /**    /**
69     * Create an exception with a message.     * Create an exception with a message. The cause remains uninitialized.
70       *
71       * @param s the message string
72       * @see #initCause(Throwable)
73     */     */
74    public RuntimeException(String s)    public RuntimeException(String s)
75      {    {
76        super(s);      super(s);
77      }    }
78    
79      /**
80       * Create an exception with a message and a cause.
81       *
82       * @param s the message string
83       * @param cause the cause of this exception
84       * @since 1.4
85       */
86      public RuntimeException(String s, Throwable cause)
87      {
88        super(s, cause);
89      }
90    
91      /**
92       * Create an exception with the given cause, and a message of
93       * <code>cause == null ? null : cause.toString()</code>.
94       *
95       * @param cause the cause of this exception
96       * @since 1.4
97       */
98      public RuntimeException(Throwable cause)
99      {
100        super(cause);
101      }
102  }  }

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26