Changeset 231:654b7d7cc33c

Show
Ignore:
Timestamp:
04/16/08 14:19:29 (5 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

instead of throwable member var, use the Exception.next

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/DWTError.d

    r158 r231  
    5454     * or null if this information is not available. 
    5555     */ 
    56     public Exception throwable; 
     56    public Exception throwable( Exception e ){ 
     57        this.next = e; 
     58        return this.next; 
     59    } 
     60    public Exception throwable(){ 
     61        return this.next; 
     62    } 
    5763 
    5864    //static final long serialVersionUID = 3833467327105808433L; 
  • dwt/DWTException.d

    r158 r231  
    4545     * or null if this information is not available. 
    4646     */ 
    47     public Exception throwable; 
     47    public Exception throwable( Exception e ){ 
     48        this.next = e; 
     49        return this.next; 
     50    } 
     51    public Exception throwable(){ 
     52        return this.next; 
     53    } 
     54 
    4855 
    4956    //static final long serialVersionUID = 3257282552304842547L;