Zend/Config/Ini.php でini.fileがパースエラーになるとき、Exceptionエラーになった

    public function __construct($filename, $section = null, $options = false)
    {
        if (empty($filename)) {            /**
             * @see Zend_Config_Exception
             */
            require_once 'Zend/Config/Exception.php';
            throw new Zend_Config_Exception('Filename is not set');
        }

になってたので、ファイル名にエラーがなくて、その下でエラーになったとき、
require_once 'Zend/Config/Exception.php';
されてないから、エラーになってた。

    public function __construct($filename, $section = null, $options = false)
    {
        require_once 'Zend/Config/Exception.php';        if (empty($filename)) {            /**
             * @see Zend_Config_Exception
             */
#            require_once 'Zend/Config/Exception.php';
            throw new Zend_Config_Exception('Filename is not set');
        }

とりあえず、上に出しておいた。