Changeset 238:380bad9f6852 for dwt/DWTError.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/DWTError.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/DWTError.d
r231 r238 12 12 *******************************************************************************/ 13 13 module dwt.DWTError; 14 15 import dwt.dwthelper.utils; 14 16 15 17 import dwt.DWT; … … 81 83 * @param message the detail message for the exception 82 84 */ 83 public this ( char[]message) {85 public this (String message) { 84 86 this (DWT.ERROR_UNSPECIFIED, message); 85 87 } … … 104 106 * @param message the detail message for the exception 105 107 */ 106 public this (int code, char[]message) {108 public this (int code, String message) { 107 109 super (message); 108 110 this.code = code; … … 133 135 * @return the error message string of this DWTError object 134 136 */ 135 public char[]getMessage () {137 public String getMessage () { 136 138 if (throwable is null) 137 139 return super.toString();
