Changeset 225:5366f8db1eda

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

RuntimeException? with getCause

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dwthelper/utils.d

    r223 r225  
    621621    this( Exception e ){ 
    622622        super(e.toString); 
    623     } 
     623        next = e; 
     624    } 
     625    public Exception getCause() { 
     626        return next; 
     627    } 
     628 
    624629} 
    625630class IndexOutOfBoundsException : Exception {