comparison dwt/DWTException.d @ 231:654b7d7cc33c

instead of throwable member var, use the Exception.next
author Frank Benoit <benoit@tionex.de>
date Wed, 16 Apr 2008 20:19:29 +0200
parents de2578a843a7
children 380bad9f6852
comparison
equal deleted inserted replaced
230:19ce131cbd99 231:654b7d7cc33c
42 42
43 /** 43 /**
44 * The underlying throwable that caused the problem, 44 * The underlying throwable that caused the problem,
45 * or null if this information is not available. 45 * or null if this information is not available.
46 */ 46 */
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
48 55
49 //static final long serialVersionUID = 3257282552304842547L; 56 //static final long serialVersionUID = 3257282552304842547L;
50 57
51 /** 58 /**
52 * Constructs a new instance of this class with its 59 * Constructs a new instance of this class with its