comparison org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/SWTException.d @ 50:d5075f5226e5

[swt lin]
author Frank Benoit <benoit@tionex.de>
date Fri, 27 Mar 2009 15:30:20 +0100
parents 7a2dd761a8b2
children
comparison
equal deleted inserted replaced
49:7a2dd761a8b2 50:d5075f5226e5
46 46
47 /** 47 /**
48 * The underlying throwable that caused the problem, 48 * The underlying throwable that caused the problem,
49 * or null if this information is not available. 49 * or null if this information is not available.
50 */ 50 */
51 public Exception throwable( Exception e ){ 51 public Throwable throwable( Throwable e ){
52 this.next = e; 52 this.next = e;
53 return this.next; 53 return this.next;
54 } 54 }
55 public Exception throwable(){ 55 public Throwable throwable(){
56 return this.next; 56 return this.next;
57 } 57 }
58 58
59 59
60 //static const long serialVersionUID = 3257282552304842547L; 60 //static const long serialVersionUID = 3257282552304842547L;
114 * </p> 114 * </p>
115 * @return the underlying throwable 115 * @return the underlying throwable
116 * 116 *
117 * @since 3.1 117 * @since 3.1
118 */ 118 */
119 public Exception getCause() { 119 public Throwable getCause() {
120 return throwable; 120 return throwable;
121 } 121 }
122 122
123 /** 123 /**
124 * Returns the string describing this SWTException object. 124 * Returns the string describing this SWTException object.