Show
Ignore:
Timestamp:
05/04/08 18:42:55 (4 years ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted char[] to String

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/DWTError.d

    r231 r238  
    1212 *******************************************************************************/ 
    1313module dwt.DWTError; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517import dwt.DWT; 
     
    8183 * @param message the detail message for the exception 
    8284 */ 
    83 public this (char[] message) { 
     85public this (String message) { 
    8486    this (DWT.ERROR_UNSPECIFIED, message); 
    8587} 
     
    104106 * @param message the detail message for the exception 
    105107 */ 
    106 public this (int code, char[] message) { 
     108public this (int code, String message) { 
    107109    super (message); 
    108110    this.code = code; 
     
    133135 *  @return the error message string of this DWTError object 
    134136 */ 
    135 public char[] getMessage () { 
     137public String getMessage () { 
    136138    if (throwable is null) 
    137139        return super.toString();