diff 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
line wrap: on
line diff
--- a/org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/SWTException.d	Wed Mar 25 08:46:48 2009 +0100
+++ b/org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/SWTException.d	Wed Mar 25 11:18:25 2009 +0100
@@ -44,11 +44,11 @@
      * The underlying throwable that caused the problem,
      * or null if this information is not available.
      */
-    public Exception throwable( Exception e ){
+    public Throwable throwable( Throwable e ){
         this.next = e;
         return this.next;
     }
-    public Exception throwable(){
+    public Throwable throwable(){
         return this.next;
     }
 
@@ -112,7 +112,7 @@
  *
  * @since 3.1
  */
-public Exception getCause() {
+public Throwable getCause() {
     return throwable;
 }