Changeset 212:ab60f3309436 for dwt/DWTError.d
- Timestamp:
- 05/04/08 18:12:38 (7 months ago)
- Files:
-
- dwt/DWTError.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/DWTError.d
r206 r212 17 17 import tango.core.Exception; 18 18 import tango.io.Stdout; 19 import dwt.dwthelper.utils; 19 20 20 21 /** … … 81 82 * @param message the detail message for the exception 82 83 */ 83 public this ( char[]message) {84 public this (String message) { 84 85 this (DWT.ERROR_UNSPECIFIED, message); 85 86 } … … 104 105 * @param message the detail message for the exception 105 106 */ 106 public this (int code, char[]message) {107 public this (int code, String message) { 107 108 super (message); 108 109 this.code = code; … … 133 134 * @return the error message string of this DWTError object 134 135 */ 135 public char[]getMessage () {136 public String getMessage () { 136 137 if (throwable is null) 137 138 return super.toString();
