/[classpath]/classpath/vm/reference/java/lang/VMThrowable.java
ViewVC logotype

Diff of /classpath/vm/reference/java/lang/VMThrowable.java

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

revision 1.1 by mark, Fri Oct 4 15:26:25 2002 UTC revision 1.1.2.1 by gnu_andrew, Fri May 27 00:01:46 2005 UTC
# Line 50  package java.lang; Line 50  package java.lang;
50  final class VMThrowable  final class VMThrowable
51  {  {
52    /**    /**
53       * VM private data.
54       */
55      private transient Object vmdata;
56    
57      /**
58     * Private contructor, create VMThrowables with fillInStackTrace();     * Private contructor, create VMThrowables with fillInStackTrace();
59     */     */
60    private VMThrowable() { }    private VMThrowable() { }
# Line 63  final class VMThrowable Line 68  final class VMThrowable
68     * @return a new VMThrowable containing the current execution stack trace.     * @return a new VMThrowable containing the current execution stack trace.
69     * @see Throwable#fillInStackTrace()     * @see Throwable#fillInStackTrace()
70     */     */
71    static VMThrowable fillInStackTrace(Throwable t)    static native VMThrowable fillInStackTrace(Throwable t);
   {  
     return null;  
   }  
72    
73    /**    /**
74     * Returns an <code>StackTraceElement</code> array based on the execution     * Returns an <code>StackTraceElement</code> array based on the execution
# Line 76  final class VMThrowable Line 78  final class VMThrowable
78     * @return a non-null but possible zero length array of StackTraceElement.     * @return a non-null but possible zero length array of StackTraceElement.
79     * @see Throwable#getStackTrace()     * @see Throwable#getStackTrace()
80     */     */
81    StackTraceElement[] getStackTrace(Throwable t)    native StackTraceElement[] getStackTrace(Throwable t);
   {  
     return new StackTraceElement[0];  
   }  
82  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.2.1

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