diff dwt/DWTError.d @ 36:db5a898b2119

Fixed a lot of compile errors
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Tue, 07 Oct 2008 12:56:18 +0200
parents 354c569b57a9
children d8635bb48c7c
line wrap: on
line diff
--- a/dwt/DWTError.d	Sun Sep 14 23:32:29 2008 +0200
+++ b/dwt/DWTError.d	Tue Oct 07 12:56:18 2008 +0200
@@ -137,8 +137,8 @@
  *  @return the error message string of this DWTError object
  */
 public String getMessage () {
-    if (throwable is null) return super.getMessage();
-    return super.getMessage () ~ " (" ~ throwable.toString () ~ ")"; //$NON-NLS-1$ //$NON-NLS-2$
+    if (throwable is null) return super.toString();
+    return super.toString () ~ " (" ~ throwable.toString () ~ ")"; //$NON-NLS-1$ //$NON-NLS-2$
 }
 
 /**