diff dwt/DWTException.d @ 57:41dbc4d9faab

Update to tango trunk -r3152. Thanks DavidLeon for the adjustment of TracedException to Exception and creating the patch.
author Frank Benoit <benoit@tionex.de>
date Mon, 04 Feb 2008 12:46:24 +0100
parents 9a64a7781bab
children dc7db4338dbe
line wrap: on
line diff
--- a/dwt/DWTException.d	Mon Feb 04 12:34:19 2008 +0100
+++ b/dwt/DWTException.d	Mon Feb 04 12:46:24 2008 +0100
@@ -34,7 +34,7 @@
  * @see DWTError
  */
 
-public class DWTException : TracedException {
+public class DWTException : Exception {
 
     /**
      * The DWT error code, one of DWT.ERROR_*.
@@ -45,7 +45,7 @@
      * The underlying throwable that caused the problem,
      * or null if this information is not available.
      */
-    public TracedException throwable;
+    public Exception throwable;
 
     //static final long serialVersionUID = 3257282552304842547L;
 
@@ -106,7 +106,7 @@
  *
  * @since 3.1
  */
-public TracedException getCause() {
+public Exception getCause() {
     return throwable;
 }