Changeset 22770

Show
Ignore:
Timestamp:
07/02/09 13:35:28 (9 months ago)
Author:
rambo
Message:

use logic_exceptions for these, missed when manually fixing after sed:ding, refs #1196

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/external-tools/mvc_installer/lib/config.php

    r22769 r22770  
    6262    public function store($key, $value) 
    6363    { 
    64         throw new midgard2_installer_runtime_exception(MGD2INST_ERROR_UNKNOWN, __CLASS__ . '::' . __FUNCTION__ . '() not implemented'); 
     64        throw new midgard2_installer_logic_exception(MGD2INST_ERROR_UNKNOWN, __CLASS__ . '::' . __FUNCTION__ . '() not implemented'); 
    6565    } 
    6666 
  • trunk/external-tools/mvc_installer/lib/exporter/git.php

    r22769 r22770  
    2020    public function export($uri) 
    2121    { 
    22         throw new midgard2_installer_runtime_exception(MGD2INST_ERROR_UNKNOWN, __CLASS__ . '::' . __FUNCTION__ . '() not implemented'); 
     22        throw new midgard2_installer_logic_exception(MGD2INST_ERROR_UNKNOWN, __CLASS__ . '::' . __FUNCTION__ . '() not implemented'); 
    2323    } 
    2424}