Changeset 1100

Show
Ignore:
Timestamp:
12/04/07 07:39:25 (9 months ago)
Author:
mikey
Message:

fixed method name

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/lang/stubMode.php

    r1098 r1100  
    115115        self::$PROD                     = new self('PROD', 0); 
    116116        self::$PROD->exceptionHandler   = array('class'  => 'net.stubbles.lang.errorhandler.stubProdModeExceptionHandler', 
    117                                                 'method' => 'handle', 
     117                                                'method' => 'handleException', 
    118118                                                'type'   => self::HANDLER_INSTANCE 
    119119                                          ); 
     
    126126        self::$TEST                     = new self('TEST', 1); 
    127127        self::$TEST->exceptionHandler   = array('class'  => 'net.stubbles.lang.errorhandler.stubDisplayExceptionHandler', 
    128                                                 'method' => 'handle', 
     128                                                'method' => 'handleException', 
    129129                                                'type'   => self::HANDLER_INSTANCE 
    130130                                          ); 
     
    137137        self::$STAGE                    = new self('STAGE', 2); 
    138138        self::$STAGE->exceptionHandler  = array('class'  => 'net.stubbles.lang.errorhandler.stubDisplayExceptionHandler', 
    139                                                 'method' => 'handle', 
     139                                                'method' => 'handleException', 
    140140                                                'type'   => self::HANDLER_INSTANCE 
    141141                                          ); 
     
    145145        self::$DEV                      = new self('STAGE', 3); 
    146146        self::$DEV->exceptionHandler    = array('class'  => 'net.stubbles.lang.errorhandler.stubDisplayExceptionHandler', 
    147                                                 'method' => 'handle', 
     147                                                'method' => 'handleException', 
    148148                                                'type'   => self::HANDLER_INSTANCE 
    149149                                          );