comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/SWTException.d @ 38:2e09b0e6857a

work on phobosfication
author Frank Benoit <benoit@tionex.de>
date Wed, 25 Mar 2009 11:18:25 +0100
parents 735224fcc45f
children
comparison
equal deleted inserted replaced
37:46c5f8f56b41 38:2e09b0e6857a
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( Exception e ){ 47 public Throwable throwable( Throwable e ){
48 this.next = e; 48 this.next = e;
49 return this.next; 49 return this.next;
50 } 50 }
51 public Exception throwable(){ 51 public Throwable throwable(){
52 return this.next; 52 return this.next;
53 } 53 }
54 54
55 55
56 //static final long serialVersionUID = 3257282552304842547L; 56 //static final long serialVersionUID = 3257282552304842547L;
110 * </p> 110 * </p>
111 * @return the underlying throwable 111 * @return the underlying throwable
112 * 112 *
113 * @since 3.1 113 * @since 3.1
114 */ 114 */
115 public Exception getCause() { 115 public Throwable getCause() {
116 return throwable; 116 return throwable;
117 } 117 }
118 118
119 /** 119 /**
120 * Returns the string describing this SWTException object. 120 * Returns the string describing this SWTException object.