Show
Ignore:
Timestamp:
05/04/08 18:12:38 (7 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted the char[] to String and use the an alias.

Files:

Legend:

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

    r206 r212  
    1717import tango.core.Exception; 
    1818import tango.io.Stdout; 
     19import dwt.dwthelper.utils; 
    1920 
    2021/** 
     
    8182 * @param message the detail message for the exception 
    8283 */ 
    83 public this (char[] message) { 
     84public this (String message) { 
    8485    this (DWT.ERROR_UNSPECIFIED, message); 
    8586} 
     
    104105 * @param message the detail message for the exception 
    105106 */ 
    106 public this (int code, char[] message) { 
     107public this (int code, String message) { 
    107108    super (message); 
    108109    this.code = code; 
     
    133134 *  @return the error message string of this DWTError object 
    134135 */ 
    135 public char[] getMessage () { 
     136public String getMessage () { 
    136137    if (throwable is null) 
    137138        return super.toString();