Changeset 199:3d5dbb27dec2

Show
Ignore:
Timestamp:
04/10/08 19:26:13 (6 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

    r197 r199  
    638638    this( Exception e ){ 
    639639        super(e.toString); 
    640     } 
     640        next = e; 
     641    } 
     642    public Exception getCause() { 
     643        return next; 
     644    } 
     645 
    641646} 
    642647class IndexOutOfBoundsException : Exception {