comparison dwt/DWTError.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
51 51
52 /** 52 /**
53 * The underlying throwable that caused the problem, 53 * The underlying throwable that caused the problem,
54 * or null if this information is not available. 54 * or null if this information is not available.
55 */ 55 */
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 }
57 63
58 //static final long serialVersionUID = 3833467327105808433L; 64 //static final long serialVersionUID = 3833467327105808433L;
59 65
60 /** 66 /**
61 * Constructs a new instance of this class with its 67 * Constructs a new instance of this class with its